Uses of Interface
org.hibernate.query.sqm.mutation.spi.SqmMultiTableInsertStrategy
-
Packages that use SqmMultiTableInsertStrategy Package Description org.hibernate.boot.internal org.hibernate.boot.spi org.hibernate.dialect org.hibernate.metamodel.mapping Hibernate's run-time mapping model.org.hibernate.persister.entity org.hibernate.query.spi org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.mutation.internal 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. -
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategySessionFactoryOptionsBuilder. getCustomSqmMultiTableInsertStrategy() -
Uses of SqmMultiTableInsertStrategy in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategyAbstractDelegatingSessionFactoryOptions. getCustomSqmMultiTableInsertStrategy() -
Uses of SqmMultiTableInsertStrategy in org.hibernate.dialect
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return SqmMultiTableInsertStrategy Modifier and Type Method Description default SqmMultiTableInsertStrategyEntityMappingType. getSqmMultiTableInsertStrategy() -
Uses of SqmMultiTableInsertStrategy in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategyAbstractEntityPersister. getSqmMultiTableInsertStrategy()SqmMultiTableInsertStrategyEntityPersister. getSqmMultiTableInsertStrategy()protected static SqmMultiTableInsertStrategyAbstractEntityPersister. interpretSqmMultiTableInsertStrategy(AbstractEntityPersister entityMappingDescriptor, MappingModelCreationProcess creationProcess) -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategyQueryEngineOptions. getCustomSqmMultiTableInsertStrategy()Contract for handling SQM trees representing insertion (INSERT) queries where the target of the mutation is a multi-table entity. -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.internal
Constructors in org.hibernate.query.sqm.internal with parameters of type SqmMultiTableInsertStrategy Constructor Description MultiTableInsertQueryPlan(SqmInsertStatement<?> sqmInsert, DomainParameterXref domainParameterXref, SqmMultiTableInsertStrategy mutationStrategy) -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.internal
Methods in org.hibernate.query.sqm.mutation.internal that return SqmMultiTableInsertStrategy Modifier and Type Method Description static SqmMultiTableInsertStrategySqmMutationStrategyHelper. resolveInsertStrategy(RootClass entityBootDescriptor, EntityMappingType rootEntityDescriptor, MappingModelCreationProcess creationProcess)Standard resolution of SqmInsertStrategy to use for a given entity hierarchy. -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.internal.cte
Classes in org.hibernate.query.sqm.mutation.internal.cte that implement SqmMultiTableInsertStrategy Modifier and Type Class Description classCteInsertStrategy -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.internal.temptable
Classes in org.hibernate.query.sqm.mutation.internal.temptable that implement SqmMultiTableInsertStrategy Modifier and Type Class Description classGlobalTemporaryTableInsertStrategyStrategy based on ANSI SQL's definition of a "global temporary table".classLocalTemporaryTableInsertStrategyStrategy based on ANSI SQL's definition of a "local temporary table" (local to each db session).classPersistentTableInsertStrategyThis is a strategy that mimics temporary tables for databases which do not support temporary tables.
-