use of io.confluent.ksql.parser.tree.GroupingElement in project ksql by confluentinc.
the class Analyzer method analyzeGroupBy.
private void analyzeGroupBy(final GroupBy groupBy) {
for (GroupingElement groupingElement : groupBy.getGroupingElements()) {
Set<Expression> groupingSet = groupingElement.enumerateGroupingSets().get(0);
analysis.getGroupByExpressions().addAll(groupingSet);
}
}
Aggregations