![JAR search and dependency download from the Maven repository](/logo.png)
ru.abyss.settings.importer.ImporterV112 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abyss-export Show documentation
Show all versions of abyss-export Show documentation
DB import/export library for Abyss ACS
/*
* Copyright Бездна (c) 2018.
*/
package ru.abyss.settings.importer;
import java.sql.Connection;
/**
* @author Minu <[email protected]>
* @since 29.06.2018 21:52:26
*/
@ImporterVersion("1.11")
@ImporterVersion("1.12")
public class ImporterV112 extends ImporterV113 {
@Override
protected ImportTable filterTable(Connection h2Connection, Connection pgConnection, ImportTable tbl) throws Exception {
// в версии 1.13 из таблицы settings.tfindings удалилось поле marker
if ((tbl != null) && "SETTINGS.TFINDINGS".equalsIgnoreCase(tbl.toString()))
tbl.removeColumn("MARKER");
return super.filterTable(h2Connection, pgConnection, tbl);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy