[jOOQ/jOOQ#10626] Add support for CockroachDB CREATE SCHEMA et. al

This commit is contained in:
Lukas Eder 2020-12-01 13:58:01 +01:00
parent 72fdacae23
commit 802ef1f74b
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ implements
private final Schema schema;
private final boolean createSchemaIfNotExists;
CreateSchemaImpl(
Configuration configuration,

View File

@ -66,7 +66,7 @@ implements
private final Schema schema;
private final boolean dropSchemaIfExists;
private Boolean cascade;
DropSchemaImpl(
Configuration configuration,
Schema schema,
@ -100,7 +100,7 @@ implements
// -------------------------------------------------------------------------
// XXX: DSL API
// -------------------------------------------------------------------------
@Override
public final DropSchemaImpl cascade() {
this.cascade = true;