Class HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitQuoteIdentifiers
- java.lang.Object
-
- io.quarkus.hibernate.orm.deployment.HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitQuoteIdentifiers
-
- Enclosing class:
- HibernateOrmConfigPersistenceUnit
public static class HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitQuoteIdentifiers extends Object
-
-
Field Summary
Fields Modifier and Type Field Description HibernateOrmConfigPersistenceUnit.IdentifierQuotingStrategystrategyIdentifiers can be quoted using one of the available strategies.
-
Constructor Summary
Constructors Constructor Description HibernateOrmConfigPersistenceUnitQuoteIdentifiers()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAnyPropertySet()
-
-
-
Field Detail
-
strategy
@ConfigItem(defaultValue="none") public HibernateOrmConfigPersistenceUnit.IdentifierQuotingStrategy strategy
Identifiers can be quoted using one of the available strategies.Set to
noneby default, meaning no identifiers will be quoted. If set toall, all identifiers and column definitions will be quoted. Additionally, setting it toall-except-column-definitionswill skip the column definitions, which can usually be required when they exist, or else use the optiononly-keywordsto quote only identifiers deemed SQL keywords by the Hibernate ORM dialect.
-
-