提交 98ef5ca6 authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 f1ba964b
...@@ -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.139 (2010-07-10)</h2>
<ul><li>There was a bug in the internal IntIntHashMap. There were now known side effects however. <ul><li>There was a bug in the internal IntIntHashMap. There were now known side effects however.
</li><li>ANALYZE now uses less memory. </li><li>ANALYZE now uses less memory.
</li><li>Memory mapped file system: improved error messages if there is a problem. </li><li>Memory mapped file system: improved error messages if there is a problem.
...@@ -708,32 +712,5 @@ Change Log ...@@ -708,32 +712,5 @@ Change Log
will also speed up updates and deletes. will also speed up updates and deletes.
</li></ul> </li></ul>
<h2>Version 1.1.117 (2009-08-09)</h2>
<ul><li>New committer: Sam Van Oort has been contributing to H2 since quite some time
in many ways (on the mailing list, documentation, and in the form of patches).
He is now a committer.
</li><li>JaQu: the order of the fields in the database no longer needs to match the order in the database.
</li><li>Issue 103: MVCC: the setting MAX_MEMORY_UNDO can currently not be supported when using
multi-version concurrency, that means the complete undo log must fit in memory.
</li><li>LIKE: the escape mechanism can now be disable using ESCAPE ''.
The default escape character can be changed using the system property h2.defaultEscape.
The default is still '\' (as in MySQL and PostgreSQL).
</li><li>Views using functions were not re-evaluated when necessary.
</li><li>Improved MySQL compatibility for SHOW COLUMNS.
</li><li>Improved PostgreSQL compatibility for timestamp literals with timezone.
</li><li>Sergi Vladykin translated the error messages to Russian. Thanks a lot!
</li><li>Support for Java 6 DatabaseMetaData.getTables, getColumns, getProcedures, and getProcedureColumns.
</li><li>Issue 101: Rollback of a large transaction (more than 100000 rows) could fail.
</li><li>Various bugfixes and improvements in the page store mechanism (still experimental).
</li><li>The functions LENGTH, OCTET_LENGTH, and BIT_LENGTH now return BIGINT.
</li><li>Data types CLOB and BLOB: the maximum precision was Integer.MAX_VALUE, it is now Long.MAX_VALUE.
</li><li>Multi-threaded kernel: creating and dropping temporary database objects
and the potentially free pages list was not correctly synchronized. Thanks a lot
to Eric Faulhaber for the test case and patch!
</li><li>Parsing SQL script files is now faster.
</li><li>CSV reading is now faster.
</li><li>SimpleResultSet.newInstance(SimpleRowSource rs) did not work.
</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 = 138; public static final int BUILD_ID = 139;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 137; public static final int BUILD_ID_STABLE = 138;
/** /**
* 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-27"; public static final String BUILD_DATE = "2010-07-10";
/** /**
* 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-06-06"; public static final String BUILD_DATE_STABLE = "2010-06-27";
/** /**
* 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
(89, '1.2.139', '2010-07-10'),
(88, '1.2.138', '2010-06-27'), (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'),
...@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES ...@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
(77, '1.2.127', '2010-01-15'), (77, '1.2.127', '2010-01-15'),
(76, '1.2.126', '2009-12-18'), (76, '1.2.126', '2009-12-18'),
(75, '1.2.125', '2009-12-06'), (75, '1.2.125', '2009-12-06'),
(74, '1.2.124', '2009-11-20'),
; ;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR, CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论