All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openmetadata.service.migration.mysql.v140.Migration Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
package org.openmetadata.service.migration.mysql.v140;

import static org.openmetadata.service.migration.utils.v140.MigrationUtil.migrateGenericToWebhook;
import static org.openmetadata.service.migration.utils.v140.MigrationUtil.migrateTablePartition;
import static org.openmetadata.service.migration.utils.v140.MigrationUtil.migrateTestCaseResolution;

import lombok.SneakyThrows;
import org.openmetadata.service.migration.api.MigrationProcessImpl;
import org.openmetadata.service.migration.utils.MigrationFile;

public class Migration extends MigrationProcessImpl {

  public Migration(MigrationFile migrationFile) {
    super(migrationFile);
  }

  @Override
  @SneakyThrows
  public void runDataMigration() {
    // Migrate Table Partition
    migrateTablePartition(handle, collectionDAO);

    // Migrate Generic to Webhook
    migrateGenericToWebhook(collectionDAO);

    // Migrate Test case resolution status
    migrateTestCaseResolution(handle, collectionDAO);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy