diff --git a/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/config/PersistenceUnitProperties.java b/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/config/PersistenceUnitProperties.java index a4484497e57..1ab80393f38 100644 --- a/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/config/PersistenceUnitProperties.java +++ b/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/config/PersistenceUnitProperties.java @@ -51,6 +51,8 @@ // - 533148 : Add the eclipselink.jpa.sql-call-deferral property // 12/06/2018 - Will Dazey // - 542491: Add new 'eclipselink.jdbc.force-bind-parameters' property to force enable binding +// 12/05/2023: Tomas Kraus +// - New Jakarta Persistence 3.2 Features package org.eclipse.persistence.config; import jakarta.persistence.EntityManager; @@ -2357,6 +2359,14 @@ public class PersistenceUnitProperties { */ public static final String SCHEMA_GENERATION_NONE_ACTION = "none"; + /** + * The parameter value "verify" + *

For use with the "jakarta.persistence.schema-generation.database.action" + * and "jakarta.persistence.schema-generation.scripts.action" properties.

+ *

Specifies that database tables should be verified.

+ */ + public static final String SCHEMA_GENERATION_VERIFY_ACTION = "verify"; + /** * The parameter value "metadata" *

For use with the "jakarta.persistence.schema-generation.create-source" @@ -3032,7 +3042,7 @@ public class PersistenceUnitProperties { * should be automatically generated for foreign key constraints. It is normally recommended to have * an index for a foreign key. *

- * By default indexes are not generated, most database also do not auto generate indexes, although some do. + * By default, indexes are not generated, most database also do not auto generate indexes, although some do. *

* Allowed Values: *