提交 b2b7c44d authored 作者: Noel Grandin's avatar Noel Grandin

Merge pull request #177 from svladykin/nestedJoinTests

dropped nestedJoins test config property
......@@ -325,11 +325,6 @@ java org.h2.test.TestAll timer
*/
public boolean splitFileSystem;
/**
* Support nested joins.
*/
public boolean nestedJoins;
/**
* If only fast tests should be run. If enabled, SSL is not tested.
*/
......
......@@ -323,9 +323,6 @@ public abstract class TestBase {
if (config.defrag) {
url = addOption(url, "DEFRAG_ALWAYS", "TRUE");
}
if (config.nestedJoins) {
url = addOption(url, "NESTED_JOINS", "TRUE");
}
return "jdbc:h2:" + url;
}
......
......@@ -25,7 +25,6 @@ public class TestLimit extends TestBase {
public static void main(String... a) throws Exception {
TestBase test = TestBase.createCaller().init();
// test.config.traceTest = true;
test.config.nestedJoins = true;
test.test();
}
......
......@@ -36,15 +36,11 @@ public class TestNestedJoins extends TestBase {
public static void main(String... a) throws Exception {
TestBase test = TestBase.createCaller().init();
// test.config.traceTest = true;
test.config.nestedJoins = true;
test.test();
}
@Override
public void test() throws Exception {
if (!config.nestedJoins) {
return;
}
deleteDb("nestedJoins");
// testCases2();
testCases();
......
......@@ -35,15 +35,11 @@ public class TestOuterJoins extends TestBase {
public static void main(String... a) throws Exception {
TestBase test = TestBase.createCaller().init();
test.config.traceTest = true;
test.config.nestedJoins = true;
test.test();
}
@Override
public void test() throws Exception {
if (!config.nestedJoins) {
return;
}
deleteDb("outerJoins");
testCases();
testRandom();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论