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