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

org.openmetadata.service.migration.postgres.v130.Migration Maven / Gradle / Ivy

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

import static org.openmetadata.service.migration.utils.v130.MigrationUtil.migrateMongoDBConnStr;

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() {
    String updateSqlQuery =
        "UPDATE  dbservice_entity de SET json = :json::jsonb "
            + "WHERE serviceType = 'MongoDB' "
            + "AND id = :id";
    migrateMongoDBConnStr(handle, updateSqlQuery);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy