提交 c036f1b3 authored 作者: Thomas Mueller's avatar Thomas Mueller

Page store is now the default.

上级 8dc39601
...@@ -170,7 +170,7 @@ java org.h2.test.TestAll timer ...@@ -170,7 +170,7 @@ java org.h2.test.TestAll timer
/** /**
* If the test should run with the page store flag. * If the test should run with the page store flag.
*/ */
public boolean pageStore; public boolean pageStore = true;
/** /**
* If the test should run with many rows. * If the test should run with many rows.
...@@ -297,6 +297,9 @@ java org.h2.test.TestAll timer ...@@ -297,6 +297,9 @@ java org.h2.test.TestAll timer
/* /*
testConcurrentMerge
sort > tools
google app engine google app engine
documentation: rolling review at history.html documentation: rolling review at history.html
......
...@@ -262,7 +262,7 @@ public abstract class TestBase { ...@@ -262,7 +262,7 @@ public abstract class TestBase {
if (config.cipher != null) { if (config.cipher != null) {
url += ";CIPHER=" + config.cipher; url += ";CIPHER=" + config.cipher;
} }
if (!config.pageStore) { if (!config.pageStore && url.indexOf("PAGE_STORE=") < 0) {
url += ";PAGE_STORE=FALSE"; url += ";PAGE_STORE=FALSE";
} }
return "jdbc:h2:" + url; return "jdbc:h2:" + url;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论