virtual nodes now inherit the order field

This commit is contained in:
hns 2001-01-07 21:02:42 +00:00
parent 5dab540dce
commit 947fd19024

View file

@ -220,6 +220,7 @@ public class Relation {
return filter;
Relation vr = new Relation (other, localField, remoteField, direction, subnodesAreProperties);
vr.groupby = groupby;
vr.order = order;
vr.filter = filter;
return vr;
}
@ -232,6 +233,7 @@ public class Relation {
throw new RuntimeException ("getVirtualPropertyRelation called on non-virtual relation");
Relation vr = new Relation (other, localField, remoteField, direction, subnodesAreProperties);
vr.groupby = groupby;
vr.order = order;
vr.filter = filter;
return vr;
}