src/main/java/org/embulk/output/sqlserver/SQLServerOutputConnection.java in embulk-output-sqlserver-0.8.2 vs src/main/java/org/embulk/output/sqlserver/SQLServerOutputConnection.java in embulk-output-sqlserver-0.8.3
- old
+ new
@@ -12,14 +12,13 @@
import org.embulk.output.jdbc.TableIdentifier;
public class SQLServerOutputConnection
extends JdbcOutputConnection
{
- public SQLServerOutputConnection(Connection connection, String schemaName, boolean autoCommit)
+ public SQLServerOutputConnection(Connection connection, String schemaName)
throws SQLException
{
super(connection, schemaName);
- connection.setAutoCommit(autoCommit);
}
@Override
protected String buildRenameTableSql(TableIdentifier fromTable, TableIdentifier toTable)
{