Uses of Class
org.hibernate.sql.ast.tree.cte.CteColumn
-
Packages that use CteColumn Package Description org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.sql.ast.tree.cte -
-
Uses of CteColumn in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql that return CteColumn Modifier and Type Method Description protected CteColumn
BaseSqmToSqlAstConverter. findCteColumn(CteTable cteTable, SqmCteTableColumn cteColumn)
Methods in org.hibernate.query.sqm.sql that return types with arguments of type CteColumn Modifier and Type Method Description protected List<CteColumn>
BaseSqmToSqlAstConverter. visitCycleColumns(CteTable cteTable, List<SqmCteTableColumn> cycleColumns)
Method parameters in org.hibernate.query.sqm.sql with type arguments of type CteColumn Modifier and Type Method Description protected void
BaseSqmToSqlAstConverter. forEachCteColumn(CteTable cteTable, SqmCteTableColumn cteColumn, Consumer<CteColumn> consumer)
-
Uses of CteColumn in org.hibernate.sql.ast.tree.cte
Methods in org.hibernate.sql.ast.tree.cte that return CteColumn Modifier and Type Method Description CteColumn
SearchClauseSpecification. getCteColumn()
CteColumn
CteStatement. getCycleMarkColumn()
Methods in org.hibernate.sql.ast.tree.cte that return types with arguments of type CteColumn Modifier and Type Method Description List<CteColumn>
CteTable. getCteColumns()
List<CteColumn>
CteStatement. getCycleColumns()
Constructors in org.hibernate.sql.ast.tree.cte with parameters of type CteColumn Constructor Description CteStatement(CteTable cteTable, Statement cteDefinition, CteMaterialization materialization, CteSearchClauseKind searchClauseKind, List<SearchClauseSpecification> searchBySpecifications, List<CteColumn> cycleColumns, CteColumn cycleMarkColumn, char cycleValue, char noCycleValue)
SearchClauseSpecification(CteColumn cteColumn, SortOrder sortOrder, NullPrecedence nullPrecedence)
Constructor parameters in org.hibernate.sql.ast.tree.cte with type arguments of type CteColumn Constructor Description CteTable(String cteName, List<CteColumn> cteColumns, SessionFactoryImplementor sessionFactory)
-