-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add connection migrations for schema changes (#17651)
- Loading branch information
Showing
3 changed files
with
94 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 90 additions & 0 deletions
90
...yte/db/instance/configs/migrations/V0_40_11_002__AddSchemaChangeColumnsToConnections.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
* Copyright (c) 2022 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.db.instance.configs.migrations; | ||
|
||
import java.util.Arrays; | ||
import org.flywaydb.core.api.migration.BaseJavaMigration; | ||
import org.flywaydb.core.api.migration.Context; | ||
import org.jooq.DSLContext; | ||
import org.jooq.EnumType; | ||
import org.jooq.impl.DSL; | ||
import org.jooq.impl.SQLDataType; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
public class V0_40_11_002__AddSchemaChangeColumnsToConnections extends BaseJavaMigration { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(V0_40_11_002__AddSchemaChangeColumnsToConnections.class); | ||
|
||
@Override | ||
public void migrate(final Context context) throws Exception { | ||
LOGGER.info("Running migration: {}", this.getClass().getSimpleName()); | ||
|
||
final DSLContext ctx = DSL.using(context.getConnection()); | ||
|
||
addNonBreakingChangePreferenceEnumTypes(ctx); | ||
|
||
addNotifySchemaChanges(ctx); | ||
addNonBreakingChangePreference(ctx); | ||
addBreakingChange(ctx); | ||
} | ||
|
||
private static void addNonBreakingChangePreferenceEnumTypes(final DSLContext ctx) { | ||
ctx.createType(NonBreakingChangePreferenceType.NAME) | ||
.asEnum(Arrays.stream(NonBreakingChangePreferenceType.values()).map(NonBreakingChangePreferenceType::getLiteral).toList()) | ||
.execute(); | ||
} | ||
|
||
private static void addNotifySchemaChanges(final DSLContext ctx) { | ||
ctx.alterTable("connection") | ||
.addColumnIfNotExists(DSL.field( | ||
"notify_schema_changes", | ||
SQLDataType.BOOLEAN.nullable(false).defaultValue(true))) | ||
.execute(); | ||
} | ||
|
||
private static void addNonBreakingChangePreference(final DSLContext ctx) { | ||
ctx.alterTable("connection") | ||
.addColumnIfNotExists(DSL.field( | ||
"non_breaking_change_preference", | ||
SQLDataType.VARCHAR.asEnumDataType(NonBreakingChangePreferenceType.class).nullable(false) | ||
.defaultValue(NonBreakingChangePreferenceType.IGNORE))) | ||
.execute(); | ||
|
||
} | ||
|
||
private static void addBreakingChange(final DSLContext ctx) { | ||
ctx.alterTable("connection") | ||
.addColumnIfNotExists(DSL.field( | ||
"breaking_change", | ||
SQLDataType.BOOLEAN.nullable(false).defaultValue(false))) | ||
.execute(); | ||
} | ||
|
||
public enum NonBreakingChangePreferenceType implements EnumType { | ||
|
||
IGNORE("ignore"), | ||
DISABLE("disable"); | ||
|
||
private final String literal; | ||
public static final String NAME = "non_breaking_change_preference_type"; | ||
|
||
NonBreakingChangePreferenceType(final String literal) { | ||
this.literal = literal; | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return NAME; | ||
} | ||
|
||
@Override | ||
public String getLiteral() { | ||
return literal; | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters