use of org.wso2.ballerinalang.compiler.tree.clauses.BLangGroupBy in project ballerina by ballerina-lang.
the class SiddhiQueryBuilder method createSiddhiGroupByClause.
private void createSiddhiGroupByClause(BLangSelectClause select) {
BLangGroupBy groupBy = (BLangGroupBy) select.getGroupBy();
groupBy.accept(this);
}
Aggregations