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

The "small jar" distribution did not include the CompressTool.

上级 49009f7d
...@@ -18,7 +18,9 @@ Change Log ...@@ -18,7 +18,9 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>The build tool now supports (minimalistic) shell mode, started using ./build.sh - <ul><li>The "small jar" distribution did not include the CompressTool,
which was required for some operations. Fixed.
</li><li>The build tool now supports (minimalistic) shell mode, started using ./build.sh -
</li><li>IS NULL comparison with nested queries and linked tables did not work. </li><li>IS NULL comparison with nested queries and linked tables did not work.
Example: select * from (select x from test) where x is null. Example: select * from (select x from test) where x is null.
</li><li>Support for null-safe equals. This includes the ANSI SQL standard syntax </li><li>Support for null-safe equals. This includes the ANSI SQL standard syntax
......
...@@ -358,6 +358,7 @@ public class Build extends BuildBase { ...@@ -358,6 +358,7 @@ public class Build extends BuildBase {
exclude("*.sh"). exclude("*.sh").
exclude("*.txt"); exclude("*.txt");
files.add(new File("temp/org/h2/tools/DeleteDbFiles.class")); files.add(new File("temp/org/h2/tools/DeleteDbFiles.class"));
files.add(new File("temp/org/h2/tools/CompressTool.class"));
jar("bin/h2small" + getJarSuffix(), files, "temp"); jar("bin/h2small" + getJarSuffix(), files, "temp");
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论