提交 732bc4c9 authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare for page store tests.

上级 9098afe1
...@@ -43,7 +43,7 @@ public class TestRecover { ...@@ -43,7 +43,7 @@ public class TestRecover {
private static final String TEST_DIRECTORY = DIR + "/data" + NODE; private static final String TEST_DIRECTORY = DIR + "/data" + NODE;
private static final String BACKUP_DIRECTORY = DIR + "/last"; private static final String BACKUP_DIRECTORY = DIR + "/last";
private static final String URL = System.getProperty("test.url", "jdbc:h2:" + TEST_DIRECTORY + "/test;MAX_LOG_SIZE=2"); private static final String URL = System.getProperty("test.url", "jdbc:h2:" + TEST_DIRECTORY + "/test;PAGE_STORE=TRUE");
private static final String DRIVER = System.getProperty("test.driver", "org.h2.Driver"); private static final String DRIVER = System.getProperty("test.driver", "org.h2.Driver");
private Random random; private Random random;
...@@ -68,6 +68,7 @@ public class TestRecover { ...@@ -68,6 +68,7 @@ public class TestRecover {
} }
private void runTest() throws Exception { private void runTest() throws Exception {
System.out.println("URL=" + URL);
System.out.println("backup..."); System.out.println("backup...");
new File(TEST_DIRECTORY).mkdirs(); new File(TEST_DIRECTORY).mkdirs();
File backup = backup(TEST_DIRECTORY, BACKUP_DIRECTORY, "data", 10, NODE); File backup = backup(TEST_DIRECTORY, BACKUP_DIRECTORY, "data", 10, NODE);
...@@ -292,8 +293,8 @@ public class TestRecover { ...@@ -292,8 +293,8 @@ public class TestRecover {
int id = rs.getInt("ID"); int id = rs.getInt("ID");
String name = rs.getString("NAME"); String name = rs.getString("NAME");
int value = Integer.parseInt(name); int value = Integer.parseInt(name);
if (value % 2 == 0) { if (value % 2 != 0) {
throw new Exception("unexpected odd entry " + id); throw new Exception("unexpected odd entry " + id + " value " + value);
} }
max = Math.max(max, id); max = Math.max(max, id);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论