Uses of Class
org.hibernate.sql.ast.tree.update.Assignment
-
Packages that use Assignment Package Description org.hibernate.boot.model.internal org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.query.sqm.mutation.internal.cte org.hibernate.query.sqm.mutation.internal.temptable Support for multi-table SQM mutation (insert, update, delete) operations using a table to temporarily hold the matching ids.org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.sql.ast Package defining a SQL AST for use in generation of SQL.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.insert AST nodes representinginsert
statements in a SQL tree.org.hibernate.sql.ast.tree.update AST nodes representingupdate
statements in a SQL tree. -
-
Uses of Assignment in org.hibernate.boot.model.internal
Methods in org.hibernate.boot.model.internal that return Assignment Modifier and Type Method Description static Assignment
SoftDeleteHelper. createSoftDeleteAssignment(TableReference tableReference, SoftDeleteMapping softDeleteMapping)
Create a SQL AST Assignment for setting the soft-delete column to its deleted indicate value -
Uses of Assignment in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type Assignment Modifier and Type Method Description protected void
DerbySqlAstTranslator. visitSetAssignment(Assignment assignment)
protected void
OracleSqlAstTranslator. visitSetAssignment(Assignment assignment)
Method parameters in org.hibernate.dialect with type arguments of type Assignment Modifier and Type Method Description protected void
OracleSqlAstTranslator. renderMergeUpdateClause(List<Assignment> assignments, Predicate wherePredicate)
-
Uses of Assignment in org.hibernate.query.sqm.mutation.internal.cte
Method parameters in org.hibernate.query.sqm.mutation.internal.cte with type arguments of type Assignment 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)
-
Uses of Assignment in org.hibernate.query.sqm.mutation.internal.temptable
Methods in org.hibernate.query.sqm.mutation.internal.temptable that return types with arguments of type Assignment Modifier and Type Method Description protected Map<TableReference,List<Assignment>>
UpdateExecutionDelegate. getAssignmentsByTable()
-
Uses of Assignment in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql that return types with arguments of type Assignment Modifier and Type Method Description List<Assignment>
BaseSqmToSqlAstConverter. visitSetClause(SqmSetClause setClause)
Method parameters in org.hibernate.query.sqm.sql with type arguments of type Assignment Modifier and Type Method Description void
BaseSqmToSqlAstConverter. addVersionedAssignment(Consumer<Assignment> assignmentConsumer, SqmUpdateStatement<?> sqmStatement)
void
AggregateColumnAssignmentHandler. aggregateAssignments(ArrayList<Assignment> assignments)
-
Uses of Assignment in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type Assignment Modifier and Type Method Description void
SqlAstWalker. visitAssignment(Assignment assignment)
-
Uses of Assignment in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type Assignment Modifier and Type Method Description void
AbstractSqlAstTranslator. visitAssignment(Assignment assignment)
void
AbstractSqlAstWalker. visitAssignment(Assignment assignment)
void
AggregateFunctionChecker. visitAssignment(Assignment assignment)
void
ExpressionReplacementWalker. visitAssignment(Assignment assignment)
protected void
AbstractSqlAstTranslator. visitSetAssignment(Assignment assignment)
protected void
AbstractSqlAstTranslator. visitSetAssignmentEmulateJoin(Assignment assignment, UpdateStatement statement)
Method parameters in org.hibernate.sql.ast.spi with type arguments of type Assignment Modifier and Type Method Description protected void
AbstractSqlAstTranslator. renderMergeUpdateClause(List<Assignment> assignments, Predicate wherePredicate)
protected void
AbstractSqlAstTranslator. renderSetClause(List<Assignment> assignments)
-
Uses of Assignment in org.hibernate.sql.ast.tree.insert
Methods in org.hibernate.sql.ast.tree.insert that return types with arguments of type Assignment Modifier and Type Method Description List<Assignment>
ConflictClause. getAssignments()
-
Uses of Assignment in org.hibernate.sql.ast.tree.update
Methods in org.hibernate.sql.ast.tree.update that return types with arguments of type Assignment Modifier and Type Method Description List<Assignment>
UpdateStatement. getAssignments()
Constructor parameters in org.hibernate.sql.ast.tree.update with type arguments of type Assignment Constructor Description UpdateStatement(CteContainer cteContainer, NamedTableReference targetTable, FromClause fromClause, List<Assignment> assignments, Predicate restriction, List<ColumnReference> returningColumns)
UpdateStatement(NamedTableReference targetTable, List<Assignment> assignments, Predicate restriction)
UpdateStatement(NamedTableReference targetTable, List<Assignment> assignments, Predicate restriction, List<ColumnReference> returningColumns)
UpdateStatement(NamedTableReference targetTable, FromClause fromClause, List<Assignment> assignments, Predicate restriction)
UpdateStatement(NamedTableReference targetTable, FromClause fromClause, List<Assignment> assignments, Predicate restriction, List<ColumnReference> returningColumns)
-