提交 91a6e0a7 authored 作者: Andrei Tokar's avatar Andrei Tokar

Fix TestMVTableEngine.testTransactionLogUsuallyNotStored()

上级 59cf1fe9
...@@ -76,7 +76,7 @@ public class TestMVTableEngine extends TestDb { ...@@ -76,7 +76,7 @@ public class TestMVTableEngine extends TestDb {
testMinMaxWithNull(); testMinMaxWithNull();
testTimeout(); testTimeout();
testExplainAnalyze(); testExplainAnalyze();
testTransactionLogUsuallyNotStored(); testTransactionLogEmptyAfterCommit();
testShrinkDatabaseFile(); testShrinkDatabaseFile();
testTwoPhaseCommit(); testTwoPhaseCommit();
testRecover(); testRecover();
...@@ -642,17 +642,16 @@ public class TestMVTableEngine extends TestDb { ...@@ -642,17 +642,16 @@ public class TestMVTableEngine extends TestDb {
conn.close(); conn.close();
} }
private void testTransactionLogUsuallyNotStored() throws Exception { private void testTransactionLogEmptyAfterCommit() throws Exception {
Connection conn; Connection conn;
Statement stat; Statement stat;
// we expect the transaction log is empty in at least some of the cases
for (int test = 0; test < 5; test++) {
deleteDb(getTestName()); deleteDb(getTestName());
String url = getTestName() + ";MV_STORE=TRUE"; String url = getTestName() + ";MV_STORE=TRUE";
url = getURL(url, true); url = getURL(url, true);
conn = getConnection(url); conn = getConnection(url);
stat = conn.createStatement(); stat = conn.createStatement();
stat.execute("create table test(id identity, name varchar)"); stat.execute("create table test(id identity, name varchar)");
stat.execute("set write_delay 0");
conn.setAutoCommit(false); conn.setAutoCommit(false);
PreparedStatement prep = conn.prepareStatement( PreparedStatement prep = conn.prepareStatement(
"insert into test(name) values(space(10000))"); "insert into test(name) values(space(10000))");
...@@ -673,11 +672,9 @@ public class TestMVTableEngine extends TestDb { ...@@ -673,11 +672,9 @@ public class TestMVTableEngine extends TestDb {
t.init(); t.init();
int openTransactions = t.getOpenTransactions().size(); int openTransactions = t.getOpenTransactions().size();
store.close(); store.close();
if (openTransactions == 0) { if (openTransactions != 0) {
return; fail("transaction log was not empty");
}
} }
fail("transaction log was never empty");
} }
private void testShrinkDatabaseFile() throws Exception { private void testShrinkDatabaseFile() throws Exception {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论