final public void groupingColumnReference(GroupByList groupingCols) throws ParseException, StandardException {
ValueNode columnExpression;
columnExpression = additiveExpression(null, 0, false);
/* Aggregates not allowed in group by */
HasNodeVisitor visitor =
new HasNodeVisitor(AggregateNode.class);
columnExpression.accept(visitor);
if (visitor.hasNode())
{
{if (true) throw StandardException.newException(SQLState.LANG_AGGREGATE_IN_GROUPBY_LIST);}
}
if (columnExpression.isParameterNode())
{