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

Prepare release.

上级 1ce2de09
...@@ -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.143 (2010-09-18)</h2>
<ul><li>If the user name and password are not set or empty, then the password is not hashed. <ul><li>If the user name and password are not set or empty, then the password is not hashed.
To disable this behavior, set the system property h2.emptyPassword to false. To disable this behavior, set the system property h2.emptyPassword to false.
TCP server: the default user name for the management database is now an empty string. TCP server: the default user name for the management database is now an empty string.
...@@ -793,40 +797,5 @@ Change Log ...@@ -793,40 +797,5 @@ Change Log
</li><li>Allow writing to linked tables in readonly databases. </li><li>Allow writing to linked tables in readonly databases.
</li></ul> </li></ul>
<h2>Version 1.1.119 (2009-09-26)</h2>
<ul><li>SQL statements in the exception message are no longer included if they contain '--hide--'.
</li><li>Temporary local tables did not always work after reconnect if AUTO_SERVER=TRUE
</li><li>New system property h2.defaultMaxLengthInplaceLob to change the default maximum size
of an in-place LOB object.
</li><li>New system property h2.nullConcatIsNull to change the default null concatenation behavior.
The default will be enabled in version 1.2.
</li><li>The cache algorithm TQ is disabled in this version, because it is unstable, and
because the current implementation does not have any measurable advantages over the default.
</li><li>New committer: Christian Peter. He works for <a href="http://www.docware.com">Docware</a> and
helped a lot finding and fixing bugs, and generally improving the database. He is now a committer.
</li><li>ChangeFileEncryption did not work with Lob subdirectories. Fixed.
</li><li>Issue 121: JaQu: new simple update and merge methods.
</li><li>Issue 120: JaQu didn't close result sets.
</li><li>Issue 119: JaQu creates wrong WHERE conditions on some inputs.
</li><li>The new page store mechanism is now alpha-level quality. The next release
will most likely be "1.2.120 beta" where this mode is enabled by default. To use
it right now, append ;PAGE_STORE=TRUE to the database URL. The file format
of this mode will probably not change any more.
</li><li>SELECT COUNT(*) FROM SYSTEM_RANGE(...) returned the wrong result. Fixed.
</li><li>The Recover tool now also processes the log files, however applying those changes
is still a manual process.
</li><li>New sample application that shows how to pass data to a trigger.
</li><li>More bugs in the server-less multi-connection mode have been fixed:
On Windows, two processes could write to the same database at the same time.
</li><li>When loading triggers or other client classes
(static functions, database event listener, user aggregate functions, other JDBC drivers),
the database now uses the context class loader if the class could not be found using Class.forName().
</li><li>Updating many rows with the same CLOB or BLOB values could result in FileNotFoundException.
</li><li>Statement.getConnection() threw an exception if the connection was already closed.
</li><li>The native fulltext index kept a reference to a database after the database was closed.
</li><li>Non-unique in-memory hash indexes are now supported. Thanks a lot to Sergi Vladykin for the patch!
</li><li>The optimizer does a better job for joins if indexes are missing.
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
...@@ -80,11 +80,11 @@ public abstract class Prepared { ...@@ -80,11 +80,11 @@ public abstract class Prepared {
* @return the result set * @return the result set
*/ */
public abstract ResultInterface queryMeta(); public abstract ResultInterface queryMeta();
/** /**
* Get the command type as defined in CommandInterface * Get the command type as defined in CommandInterface
* *
* @return the statement type * @return the statement type
*/ */
public abstract int getType(); public abstract int getType();
......
...@@ -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 = 142; public static final int BUILD_ID = 143;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 141; public static final int BUILD_ID_STABLE = 142;
/** /**
* 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-08-31"; public static final String BUILD_DATE = "2010-09-18";
/** /**
* 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-08-22"; public static final String BUILD_DATE_STABLE = "2010-08-31";
/** /**
* The TCP protocol version number 6. * The TCP protocol version number 6.
......
...@@ -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
(93, '1.2.143', '2010-09-18'),
(92, '1.2.142', '2010-08-31'), (92, '1.2.142', '2010-08-31'),
(91, '1.2.141', '2010-08-22'), (91, '1.2.141', '2010-08-22'),
(90, '1.2.140', '2010-07-25'), (90, '1.2.140', '2010-07-25'),
...@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES ...@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
(81, '1.2.131', '2010-03-05'), (81, '1.2.131', '2010-03-05'),
(80, '1.2.130', '2010-02-26'), (80, '1.2.130', '2010-02-26'),
(79, '1.2.129', '2010-02-19'), (79, '1.2.129', '2010-02-19'),
(78, '1.2.128', '2010-01-30'),
; ;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR, CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论