提交 4073e3eb authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 1e3ff21d
...@@ -18,6 +18,10 @@ Change Log ...@@ -18,6 +18,10 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>
</li></ul>
<h2>Version 1.2.134 (2010-04-23)</h2>
<ul><li>New system property h2.analyzeAuto (default 0 meaning disabled) to <ul><li>New system property h2.analyzeAuto (default 0 meaning disabled) to
automatically run ANALYZE after that many changes to a table. automatically run ANALYZE after that many changes to a table.
For details, see the Javadoc of this system property. For details, see the Javadoc of this system property.
...@@ -603,39 +607,5 @@ Change Log ...@@ -603,39 +607,5 @@ Change Log
to create a Java 1.4 version (http://retrotranslator.sourceforge.net/). to create a Java 1.4 version (http://retrotranslator.sourceforge.net/).
</li></ul> </li></ul>
<h2>Version 1.1.113 (2009-05-21)</h2>
<ul><li>Shell tool: the built-in commands EXIT, HELP, ?, LIST, and so on didn't
work with a semicolon at the end.
</li><li>JDK 1.5 is now required to build the jar file. However it is still possible to create
a jar file for Java 1.4. For details, see buildRelease.sh and buildRelease.bat.
As an alternative, compile using JDK 1.5 or 1.6 and use Retrotranslator to create a Java 1.4
version (http://retrotranslator.sourceforge.net/).
</li><li>When deleting or updating many rows in a table, the space in the index
file was not re-used in the default mode (persistent database, b-tree index,
LOG=1). This caused the index file to grow over time. Workarounds were to
delete and re-created the index file, alter the table (add a remove a column),
or append ;LOG=2 to the database URL. To disable the change, set the system
property h2.reuseSpaceBtreeIndex to false.
</li><li>Identifiers with a digit and then a dollar sign didn't work. Example: A1$B.
</li><li>MS SQL Server compatibility: support for linked tables with
NVARCHAR, NCHAR, NCLOB, and LONGNVARCHAR.
</li><li>Android: workaround for a problem when using read-only databases in zip files
(skip seems to be implemented incorrectly on the Android system).
</li><li>Calling execute() or prepareStatement() with null as the SQL statement
now throws an exception.
</li><li>Benchmark: the number of executed statements was incorrect. The H2 database
was loaded at the beginning of the test to collect results, now it is loaded at the very end.
Thanks to Fred Toussi from HSQLDB for reporting those problems. However the changed
do not affect the relative performance.
</li><li>H2 Console: command line settings are no longer stored in the properties file.
They are now only used for the current process, except if they are explicitly saved.
</li><li>Cache: support for a second level soft-references cache.
To enable it, append ;CACHE_TYPE=SOFT_LRU (or SOFT_TQ) to the database URL, or
set the system property h2.cacheTypeDefault to "SOFT_LRU" / "SOFT_TQ".
Enabling the second level cache reduces performance for
small databases, but speeds up large databases. It makes sense to use it
if the available memory size is unknown. Thanks a lot to Jan Kotek!
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
...@@ -14,12 +14,12 @@ public class Constants { ...@@ -14,12 +14,12 @@ public class Constants {
/** /**
* The build id is incremented for each public release. * The build id is incremented for each public release.
*/ */
public static final int BUILD_ID = 133; public static final int BUILD_ID = 134;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 132; public static final int BUILD_ID_STABLE = 133;
/** /**
* If H2 is compiled to be included in a product, this should be set to * If H2 is compiled to be included in a product, this should be set to
...@@ -32,12 +32,12 @@ public class Constants { ...@@ -32,12 +32,12 @@ public class Constants {
/** /**
* The build date is updated for each public release. * The build date is updated for each public release.
*/ */
public static final String BUILD_DATE = "2010-04-10"; public static final String BUILD_DATE = "2010-04-23";
/** /**
* The build date is updated for each public release. * The build date is updated for each public release.
*/ */
public static final String BUILD_DATE_STABLE = "2010-03-21"; public static final String BUILD_DATE_STABLE = "2010-04-10";
/** /**
* The TCP protocol version number. This protocol is used by the TCP * The TCP protocol version number. This protocol is used by the TCP
......
...@@ -13,6 +13,19 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' , ...@@ -13,6 +13,19 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARCHAR); CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARCHAR);
INSERT INTO ITEM VALUES(84,
'New version available: 1.2.134 (2010-04-21)', '2010-04-21 12:00:00',
$$A new version of H2 is available for
<a href="http://www.h2database.com">download</a>.
(You may have to click 'Refresh').
<br />
For details, see the
<a href="http://www.h2database.com/html/changelog.html">change log</a>.
<br />
For future plans, see the
<a href="http://www.h2database.com/html/roadmap.html">roadmap</a>.
$$);
INSERT INTO ITEM VALUES(83, INSERT INTO ITEM VALUES(83,
'New version available: 1.2.133 (2010-04-10)', '2010-04-10 12:00:00', 'New version available: 1.2.133 (2010-04-10)', '2010-04-10 12:00:00',
$$A new version of H2 is available for $$A new version of H2 is available for
...@@ -156,19 +169,6 @@ For future plans, see the ...@@ -156,19 +169,6 @@ For future plans, see the
<a href="http://www.h2database.com/html/roadmap.html">roadmap</a>. <a href="http://www.h2database.com/html/roadmap.html">roadmap</a>.
$$); $$);
INSERT INTO ITEM VALUES(72,
'New version available: 1.2.122 (2009-10-28)', '2009-10-28 12:00:00',
$$A new version of H2 is available for
<a href="http://www.h2database.com">download</a>.
(You may have to click 'Refresh').
<br />
For details, see the
<a href="http://www.h2database.com/html/changelog.html">change log</a>.
<br />
For future plans, see the
<a href="http://www.h2database.com/html/roadmap.html">roadmap</a>.
$$);
SELECT 'newsfeed-rss.xml' FILE, SELECT 'newsfeed-rss.xml' FILE,
XMLSTARTDOC() || XMLSTARTDOC() ||
XMLNODE('rss', XMLATTR('version', '2.0'), XMLNODE('rss', XMLATTR('version', '2.0'),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论