Don't explicitly exclude null group columns when querying for group nodes.
This commit is contained in:
parent
5372bd8fc8
commit
9abb4cc1e4
1 changed files with 1 additions and 3 deletions
|
@ -397,9 +397,7 @@ public final class Relation {
|
|||
q.append (filter);
|
||||
}
|
||||
if (groupby != null) {
|
||||
q.append (prefix);
|
||||
q.append (groupby);
|
||||
q.append (" IS NOT NULL GROUP BY "+groupby);
|
||||
q.append (" GROUP BY "+groupby);
|
||||
if (useOrder && groupbyorder != null)
|
||||
q.append (" ORDER BY "+groupbyorder);
|
||||
} else if (useOrder && order != null)
|
||||
|
|
Loading…
Add table
Reference in a new issue