[jOOQ/jOOQ#9504] Add DDLExportConfiguration.createViewIfNotExists and DDLExportConfiguration.createOrReplaceView

These features were already added previously. This commit adds tests and fixes a bug.
This commit is contained in:
Lukas Eder 2019-11-06 12:06:17 +01:00
parent ef3ba45b95
commit 504a1ecd5d

View File

@ -97,7 +97,7 @@ public final class DDLExportConfiguration {
boolean createIndexIfNotExists,
boolean createSequenceIfNotExists,
boolean createViewIfNotExists,
boolean createOrreplaceView,
boolean createOrReplaceView,
boolean respectCatalogOrder,
boolean respectSchemaOrder,
boolean respectTableOrder,
@ -113,7 +113,7 @@ public final class DDLExportConfiguration {
this.createIndexIfNotExists = createIndexIfNotExists;
this.createSequenceIfNotExists = createSequenceIfNotExists;
this.createViewIfNotExists = createViewIfNotExists;
this.createOrReplaceView = createOrreplaceView;
this.createOrReplaceView = createOrReplaceView;
this.respectCatalogOrder = respectCatalogOrder;
this.respectSchemaOrder = respectSchemaOrder;
@ -234,7 +234,7 @@ public final class DDLExportConfiguration {
* {@link SQLDialect} supports the clause.
*/
public final boolean createIndexIfNotExists() {
return createTableIfNotExists;
return createIndexIfNotExists;
}
/**