Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MySQL Implementation for Pro DAT-5592 #1463

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public void setSnapshotMetadata(Map<String, Object> snapshotMetadata) {
@Override
protected SnapshotCommandResult run() throws Exception {
SnapshotCommand.logUnsupportedDatabase(database, this.getClass());

SnapshotControl snapshotControl = new SnapshotControl(database);
snapshotControl.setSnapshotListener(snapshotListener);

Expand Down Expand Up @@ -156,6 +155,7 @@ public static void logUnsupportedDatabase(Database database, Class callingClass)
if (LicenseServiceUtils.checkForValidLicense("Liquibase Pro")) {
if (!(database instanceof MSSQLDatabase
|| database instanceof OracleDatabase
|| database instanceof MySQLDatabase
|| database instanceof DB2Database
|| database instanceof PostgresDatabase)) {
Scope.getCurrentScope().getUI().sendMessage("INFO This command might not yet capture Liquibase Pro additional object types on " + database.getShortName());
Expand Down