Skip to content

Commit

Permalink
0002848: Use lower transaction isolation for dashboard, outgoing loads,
Browse files Browse the repository at this point in the history
outgoing/incoming batch screens
  • Loading branch information
erilong committed Oct 7, 2016
1 parent 33cad20 commit 1f9aa8c
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -25,6 +25,7 @@
import org.jumpmind.db.model.Column;
import org.jumpmind.db.platform.AbstractJdbcDatabasePlatform;
import org.jumpmind.db.platform.DatabaseNamesConstants;
import org.jumpmind.db.sql.ISqlTemplate;
import org.jumpmind.db.sql.SqlTemplateSettings;

/*
Expand Down Expand Up @@ -69,6 +70,11 @@ protected OracleJdbcSqlTemplate createSqlTemplate() {
return new OracleJdbcSqlTemplate(dataSource, settings, new OracleLobHandler(), getDatabaseInfo());
}

@Override
protected ISqlTemplate createSqlTemplateDirty() {
return sqlTemplate;
}

public String getName() {
return DatabaseNamesConstants.ORACLE;
}
Expand Down

0 comments on commit 1f9aa8c

Please sign in to comment.