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

Prepare release.

上级 c8872a9e
...@@ -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.138 (2010-06-27)</h2>
<ul><li>Referential integrity: it was not allowed to delete a row with NULL in the parent table, <ul><li>Referential integrity: it was not allowed to delete a row with NULL in the parent table,
if there was a row with NULL in the child table. if there was a row with NULL in the child table.
</li><li>Experimental feature to support case sensitive catalog names </li><li>Experimental feature to support case sensitive catalog names
...@@ -683,37 +687,5 @@ Change Log ...@@ -683,37 +687,5 @@ Change Log
</li><li>SimpleResultSet.newInstance(SimpleRowSource rs) did not work. </li><li>SimpleResultSet.newInstance(SimpleRowSource rs) did not work.
</li></ul> </li></ul>
<h2>Version 1.1.116 (2009-07-18)</h2>
<ul><li>Server-less multi-connection mode: more bugs are fixed.
</li><li>The built-in help (INFORMATION_SCHEMA.HELP) is smaller, shrinking the jar file size a bit.
</li><li>H2 Console: column of tables of non-default schemas are now also listed,
except for schemas starting with 'INFO'.
</li><li>ALTER TABLE: removing an auto-increment or identity column didn't remove the sequence.
</li><li>Creating indexes is now a bit faster.
</li><li>PG Server: new system property h2.pgClientEncoding to explicitly set the encoding
for clients that don't send the encoding (the default encoding is UTF-8).
Thanks a lot to Sergi Vladykin for the patch!
</li><li>PG Server: improved compatibility by using the type ids of the PostgreSQL driver.
Thanks a lot to Sergi Vladykin for the patch!
</li><li>H2 Console: Oracle system tables are no longer listed, improving performance.
</li><li>Result sets are now read-only except if the statement or prepared statement was created
with the concurrency ResultSet.CONCUR_UPDATABLE. This change is required because the old behavior
(all result set are updatable) violated the JDBC spec. For backward compatibility, use the
system property h2.defaultResultSetConcurrency.
</li><li>New system property h2.defaultResultSetConcurrency to change the default result set concurrency.
</li><li>JDBC: using an invalid result set type or concurrency now throws an exception.
</li><li>If a pooled connection was not closed but garbage collected, a NullPointerException could occur.
</li><li>Fulltext search: a NullPointerException was thrown when updating a value that
was NULL previously.
</li><li>The Recover tool did not work with .data.db files of the wrong size.
</li><li>Triggers: if there was an exception when initializing a trigger, this exception could be hidden,
and in some cases (specially when using the Lucene fulltext index mechanism) a NullPointerException was
thrown later on. Now the exception that occurred on init is thrown when changing data.
</li><li>The soft-references cache (CACHE_TYPE=SOFT_LRU) could throw a NullPointerException.
</li><li>To enable the new page store mechanism, append ;PAGE_STORE=TRUE to the database URL.
or set the system property h2.pageStore to true.
This mechanism is still experimental, and the file format will change, but it is quite stable now.
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -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 = 137; public static final int BUILD_ID = 138;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 136; public static final int BUILD_ID_STABLE = 137;
/** /**
* 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-06-06"; public static final String BUILD_DATE = "2010-06-27";
/** /**
* 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-05-24"; public static final String BUILD_DATE_STABLE = "2010-06-06";
/** /**
* The TCP protocol version number. This protocol is used by the TCP * The TCP protocol version number. This protocol is used by the TCP
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR); CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES INSERT INTO VERSION VALUES
(88, '1.2.138', '2010-06-27'),
(87, '1.2.137', '2010-06-06'), (87, '1.2.137', '2010-06-06'),
(86, '1.2.136', '2010-05-24'), (86, '1.2.136', '2010-05-24'),
(85, '1.2.135', '2010-05-08'), (85, '1.2.135', '2010-05-08'),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论