Uses of Class
org.hibernate.sql.ast.tree.insert.ConflictClause
-
Packages that use ConflictClause Package Description 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.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.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. -
-
Uses of ConflictClause in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type ConflictClause Modifier and Type Method Description protected void
CockroachSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
DB2SqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
H2SqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
HANASqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
HSQLSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
MariaDBSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
MySQLSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
OracleSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
PostgreSQLSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
SQLServerSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
SybaseASESqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
SybaseSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
TiDBSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
-
Uses of ConflictClause in org.hibernate.query.sqm.mutation.internal.temptable
Methods in org.hibernate.query.sqm.mutation.internal.temptable with parameters of type ConflictClause Modifier and Type Method Description protected TableBasedInsertHandler.ExecutionDelegate
TableBasedInsertHandler. buildExecutionDelegate(SqmInsertStatement<?> sqmInsert, MultiTableSqmMutationConverter sqmConverter, TemporaryTable entityTable, AfterUseAction afterUseAction, Function<SharedSessionContractImplementor,String> sessionUidAccess, DomainParameterXref domainParameterXref, TableGroup insertingTableGroup, Map<String,TableReference> tableReferenceByAlias, List<Assignment> assignments, InsertSelectStatement insertStatement, ConflictClause conflictClause, JdbcParameter sessionUidParameter, DomainQueryExecutionContext executionContext)
For Hibernate ReactiveConstructors in org.hibernate.query.sqm.mutation.internal.temptable with parameters of type ConflictClause Constructor Description InsertExecutionDelegate(SqmInsertStatement<?> sqmInsert, MultiTableSqmMutationConverter sqmConverter, TemporaryTable entityTable, AfterUseAction afterUseAction, Function<SharedSessionContractImplementor,String> sessionUidAccess, DomainParameterXref domainParameterXref, TableGroup insertingTableGroup, Map<String,TableReference> tableReferenceByAlias, List<Assignment> assignments, InsertSelectStatement insertStatement, ConflictClause conflictClause, JdbcParameter sessionUidParameter, DomainQueryExecutionContext executionContext)
-
Uses of ConflictClause in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql that return ConflictClause Modifier and Type Method Description ConflictClause
BaseSqmToSqlAstConverter. visitConflictClause(SqmConflictClause<?> sqmConflictClause)
-
Uses of ConflictClause in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type ConflictClause Modifier and Type Method Description protected void
AbstractSqlAstTranslator. visitConflictClause(ConflictClause conflictClause)
protected void
AbstractSqlAstTranslator. visitOnDuplicateKeyConflictClause(ConflictClause conflictClause)
protected void
AbstractSqlAstTranslator. visitStandardConflictClause(ConflictClause conflictClause)
-
Uses of ConflictClause in org.hibernate.sql.ast.tree.insert
Methods in org.hibernate.sql.ast.tree.insert that return ConflictClause Modifier and Type Method Description ConflictClause
InsertSelectStatement. getConflictClause()
Methods in org.hibernate.sql.ast.tree.insert with parameters of type ConflictClause Modifier and Type Method Description void
InsertSelectStatement. setConflictClause(ConflictClause conflictClause)
-