diff -r d89e9176d263 -r d800ecd381f6 server/test/datacomputed/schema.py --- a/server/test/datacomputed/schema.py Tue Aug 25 11:11:34 2015 +0200 +++ b/server/test/datacomputed/schema.py Wed Oct 07 17:27:35 2015 +0200 @@ -36,11 +36,13 @@ class Company(EntityType): score100 = Float(formula='Any AVG(NN) WHERE X employees E, N concerns E, N note100 NN') + class Note(EntityType): note = Int() note20 = Int(formula='Any N*20 WHERE X note N') note100 = Int(formula='Any N*20 WHERE X note N') + class concerns(RelationDefinition): subject = 'Note' object = 'Employee'