提交 181401fb authored 作者: Thomas Mueller's avatar Thomas Mueller

New LOB storage.

上级 dd4594d2
...@@ -1077,6 +1077,8 @@ public class Recover extends Tool implements DataHandler { ...@@ -1077,6 +1077,8 @@ public class Recover extends Tool implements DataHandler {
} }
writer.println("DROP ALIAS READ_CLOB;"); writer.println("DROP ALIAS READ_CLOB;");
writer.println("DROP ALIAS READ_BLOB;"); writer.println("DROP ALIAS READ_BLOB;");
writer.println("DROP ALIAS READ_CLOB_DB;");
writer.println("DROP ALIAS READ_BLOB_DB;");
for (MetaRecord m : schema) { for (MetaRecord m : schema) {
String sql = m.getSQL(); String sql = m.getSQL();
// everything except create // everything except create
......
...@@ -94,6 +94,7 @@ public class Build extends BuildBase { ...@@ -94,6 +94,7 @@ public class Build extends BuildBase {
* Run the Emma code coverage. * Run the Emma code coverage.
*/ */
public void coverage() { public void coverage() {
downloadTest();
download("ext/emma-2.0.5312.jar", download("ext/emma-2.0.5312.jar",
"http://repo2.maven.org/maven2/emma/emma/2.0.5312/emma-2.0.5312.jar", "http://repo2.maven.org/maven2/emma/emma/2.0.5312/emma-2.0.5312.jar",
"30a40933caf67d88d9e75957950ccf353b181ab7"); "30a40933caf67d88d9e75957950ccf353b181ab7");
...@@ -225,6 +226,13 @@ public class Build extends BuildBase { ...@@ -225,6 +226,13 @@ public class Build extends BuildBase {
"3006beb1ca6a83449def6127dad3c060148a0209"); "3006beb1ca6a83449def6127dad3c060148a0209");
} }
private void downloadTest() {
// for TestOldVersion
download("ext/h2-1.2.127.jar",
"http://repo1.maven.org/maven2/com/h2database/h2/1.2.127/h2-1.2.127.jar",
"056e784c7cf009483366ab9cd8d21d02fe47031a");
}
private String getVersion() { private String getVersion() {
return getStaticValue("org.h2.engine.Constants", "getVersion"); return getStaticValue("org.h2.engine.Constants", "getVersion");
} }
...@@ -532,10 +540,7 @@ public class Build extends BuildBase { ...@@ -532,10 +540,7 @@ public class Build extends BuildBase {
* Compile and run all tests. * Compile and run all tests.
*/ */
public void test() { public void test() {
// for TestOldVersion downloadTest();
download("ext/h2-1.2.127.jar",
"http://repo1.maven.org/maven2/com/h2database/h2/1.2.127/h2-1.2.127.jar",
"056e784c7cf009483366ab9cd8d21d02fe47031a");
compile(); compile();
java("org.h2.test.TestAll", null); java("org.h2.test.TestAll", null);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论