1 package org.hibernate.hql.ast.tree; 3 4 import org.hibernate.hql.ast.util.ColumnHelper; 5 import org.hibernate.type.Type; 6 7 import antlr.SemanticException; 8 9 14 public class CountNode extends AbstractSelectExpression implements SelectExpression { 15 16 public Type getDataType() { 17 return getSessionFactoryHelper().findFunctionReturnType( getText(), null ); 18 } 19 20 public void setScalarColumnText(int i) throws SemanticException { 21 ColumnHelper.generateSingleScalarColumn( this, i ); 22 } 23 24 } 25 | Popular Tags |