com.github.mengweijin.flyway.database.dm.DmSqlScriptExecutor Maven / Gradle / Ivy
package com.github.mengweijin.flyway.database.dm;
import org.flywaydb.core.internal.callback.CallbackExecutor;
import org.flywaydb.core.internal.jdbc.JdbcTemplate;
import org.flywaydb.core.internal.jdbc.StatementInterceptor;
import org.flywaydb.core.internal.sqlscript.DefaultSqlScriptExecutor;
/**
* @author mengweijin
*/
@SuppressWarnings("SqlResolve")
public class DmSqlScriptExecutor extends DefaultSqlScriptExecutor {
public DmSqlScriptExecutor(JdbcTemplate jdbcTemplate, CallbackExecutor callbackExecutor, boolean undo, boolean batch, boolean outputQueryResults, StatementInterceptor statementInterceptor) {
super(jdbcTemplate, callbackExecutor, undo, batch, outputQueryResults, statementInterceptor);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy