List of usage examples for org.hibernate.dialect.function SQLFunction render
public String render(Type firstArgumentType, List arguments, SessionFactoryImplementor factory) throws QueryException;
From source file:org.grails.orm.hibernate.query.HibernateQuery.java
License:Apache License
protected String render(BasicType basic, List<String> columns, SessionFactory sessionFactory, SQLFunction sqlFunction) { return sqlFunction.render(basic, columns, (SessionFactoryImplementor) sessionFactory); }