Uses of Class
org.hibernate.sql.ast.tree.cte.CteColumn
-
Packages that use CteColumn Package Description org.hibernate.query.derived org.hibernate.query.sqm.mutation.internal.cte org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.sql.ast.tree.cte Support for common table expressions (CTE) in a SQL tree. -
-
Uses of CteColumn in org.hibernate.query.derived
Methods in org.hibernate.query.derived that return types with arguments of type CteColumn Modifier and Type Method Description List<CteColumn>
CteTupleTableGroupProducer. determineCteColumns()
-
Uses of CteColumn in org.hibernate.query.sqm.mutation.internal.cte
Method parameters in org.hibernate.query.sqm.mutation.internal.cte with type arguments of type CteColumn Modifier and Type Method Description protected String
CteInsertHandler. addDmlCtes(CteContainer statement, CteStatement queryCte, List<Map.Entry<List<CteColumn>,Assignment>> assignments, boolean assignsId, MultiTableSqmMutationConverter sqmConverter, Map<SqmParameter<?>,List<List<JdbcParameter>>> parameterResolutions, SessionFactoryImplementor factory)
static CteTable
CteInsertHandler. createCteTable(CteTable sqmCteTable, List<CteColumn> sqmCteColumns, SessionFactoryImplementor factory)
-
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. createCteColumn(String cteColumn, JdbcMapping jdbcMapping)
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<JpaCteCriteriaAttribute> 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()
CteColumn
CteStatement. getCyclePathColumn()
CteColumn
CteStatement. getSearchColumn()
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()
Method parameters in org.hibernate.sql.ast.tree.cte with type arguments of type CteColumn Modifier and Type Method Description static void
CteTable. forEachCteColumn(String prefix, ModelPart modelPart, Consumer<CteColumn> consumer)
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, CteColumn searchColumn, List<CteColumn> cycleColumns, CteColumn cycleMarkColumn, CteColumn cyclePathColumn, Literal cycleValue, Literal noCycleValue)
SearchClauseSpecification(CteColumn cteColumn, SortDirection 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)
-