Don't explicitly exclude null group columns when querying for group nodes.

This commit is contained in:
hns 2002-09-17 16:48:34 +00:00
parent 5372bd8fc8
commit 9abb4cc1e4

View file

@ -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)