Package org.hibernate.query.hql.spi
Interface SqmCreationOptions
-
- All Known Implementing Classes:
SqmCreationOptionsStandard
@Incubating public interface SqmCreationOptions
Options for semantic analysis
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default boolean
isPortableIntegerDivisionEnabled()
default boolean
useStrictJpaCompliance()
Should we interpret the query strictly according to the JPA specification? In other words, should Hibernate "extensions" to the query language be disallowed?
-
-
-
Method Detail
-
useStrictJpaCompliance
default boolean useStrictJpaCompliance()
Should we interpret the query strictly according to the JPA specification? In other words, should Hibernate "extensions" to the query language be disallowed?- See Also:
StrictJpaComplianceViolation
-
isPortableIntegerDivisionEnabled
default boolean isPortableIntegerDivisionEnabled()
- See Also:
QuerySettings.PORTABLE_INTEGER_DIVISION
-
-