Skip to content

Commit 5eebdee

Browse files
committed
Serializable test
1 parent 38b2009 commit 5eebdee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/integration-test/java/com/scalar/db/storage/jdbc/ConsensusCommitSpecificIntegrationTestWithJdbcDatabase.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ public class ConsensusCommitSpecificIntegrationTestWithJdbcDatabase
88

99
@Override
1010
protected Properties getProperties(String testName) {
11-
return ConsensusCommitJdbcEnv.getProperties(testName);
11+
Properties properties = ConsensusCommitJdbcEnv.getProperties(testName);
12+
properties.setProperty(JdbcConfig.ISOLATION_LEVEL, "SERIALIZABLE");
13+
return properties;
1214
}
1315
}

0 commit comments

Comments
 (0)