getGroupby*Relation now passes along the subnodesAreProperties fiag.
This commit is contained in:
parent
39bdbfd886
commit
9eb575ea16
1 changed files with 2 additions and 2 deletions
|
@ -269,7 +269,7 @@ public class Relation {
|
||||||
throw new RuntimeException ("getGroupbyPropertyRelation called on non-group-by relation");
|
throw new RuntimeException ("getGroupbyPropertyRelation called on non-group-by relation");
|
||||||
if (filter != null)
|
if (filter != null)
|
||||||
return filter;
|
return filter;
|
||||||
Relation vr = new Relation (other, localField, remoteField, direction, true);
|
Relation vr = new Relation (other, localField, remoteField, direction, subnodesAreProperties);
|
||||||
vr.order = order;
|
vr.order = order;
|
||||||
return vr;
|
return vr;
|
||||||
}
|
}
|
||||||
|
@ -280,7 +280,7 @@ public class Relation {
|
||||||
public Relation getGroupbyPropertyRelation () {
|
public Relation getGroupbyPropertyRelation () {
|
||||||
if (groupby == null)
|
if (groupby == null)
|
||||||
throw new RuntimeException ("getGroupbyPropertyRelation called on non-group-by relation");
|
throw new RuntimeException ("getGroupbyPropertyRelation called on non-group-by relation");
|
||||||
Relation vr = new Relation (other, localField, remoteField, direction, true);
|
Relation vr = new Relation (other, localField, remoteField, direction, subnodesAreProperties);
|
||||||
vr.order = order;
|
vr.order = order;
|
||||||
return vr;
|
return vr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue