提交 64360e5c authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 4c3e20e0
...@@ -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>After a crash, the database file did not always shrink because <ul><li>When the system property h2.nestedJoins was enabled, some outer joins returned the wrong result.
</li><li>Opening a database could throw a NullPointerException.
</li><li>After a crash, the database file did not always shrink because
old transaction log pages were not removed from the file. old transaction log pages were not removed from the file.
</li><li>Various CallableStatement methods could throw a NullPointerException. </li><li>Various CallableStatement methods could throw a NullPointerException.
</li><li>LOB files were not deleted when running DROP ALL OBJECTS. </li><li>LOB files were not deleted when running DROP ALL OBJECTS.
......
...@@ -184,7 +184,7 @@ Areas considered experimental are: ...@@ -184,7 +184,7 @@ Areas considered experimental are:
<li>The PostgreSQL server <li>The PostgreSQL server
</li><li>Multi-threading within the engine using <code>SET MULTI_THREADED=1</code> </li><li>Multi-threading within the engine using <code>SET MULTI_THREADED=1</code>
</li><li>Compatibility modes for other databases (only some features are implemented) </li><li>Compatibility modes for other databases (only some features are implemented)
</li><li>The soft reference cache (CACHE_TYPE=SOFT_LRU). It might not improve performance, </li><li>The soft reference cache (<code>CACHE_TYPE=SOFT_LRU</code>). It might not improve performance,
and out of memory issues have been reported. and out of memory issues have been reported.
</li></ul> </li></ul>
<p> <p>
......
...@@ -388,7 +388,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -388,7 +388,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Store the Lucene index in the database itself. </li><li>Store the Lucene index in the database itself.
</li><li>Support standard MERGE statement: http://en.wikipedia.org/wiki/Merge_%28SQL%29 </li><li>Support standard MERGE statement: http://en.wikipedia.org/wiki/Merge_%28SQL%29
</li><li>Oracle compatibility: support DECODE(x, ...). </li><li>Oracle compatibility: support DECODE(x, ...).
</li><li>Console: Start Browser: if ip number changed, try localhost instead.
</li><li>MVCC: compare concurrent update behavior with PostgreSQL and Oracle. </li><li>MVCC: compare concurrent update behavior with PostgreSQL and Oracle.
</li><li>HSQLDB compatibility: CREATE FUNCTION (maybe using a Function interface). </li><li>HSQLDB compatibility: CREATE FUNCTION (maybe using a Function interface).
</li><li>HSQLDB compatibility: support CALL "java.lang.Math.sqrt"(2.0) </li><li>HSQLDB compatibility: support CALL "java.lang.Math.sqrt"(2.0)
...@@ -423,6 +422,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -423,6 +422,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Improve concurrency for in-memory database operations. </li><li>Improve concurrency for in-memory database operations.
</li><li>Issue 122: Support for connection aliases for remote tcp connections. </li><li>Issue 122: Support for connection aliases for remote tcp connections.
</li><li>Fast scrambling (strong encryption doesn't help if the password is included in the application). </li><li>Fast scrambling (strong encryption doesn't help if the password is included in the application).
</li><li>H2 Console: support -webPassword to require a password to access preferences or shutdown.
</li><li>Issue 126: The index name should be "IDX_" plus the constraint name unless there is a conflict, in which case append a number. </li><li>Issue 126: The index name should be "IDX_" plus the constraint name unless there is a conflict, in which case append a number.
</li><li>Issue 127: Support activation/deactivation of triggers </li><li>Issue 127: Support activation/deactivation of triggers
</li><li>Issue 130: Custom log event listeners </li><li>Issue 130: Custom log event listeners
...@@ -523,7 +523,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -523,7 +523,6 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Move table to a different schema (rename table to a different schema), possibly using ALTER TABLE ... SET SCHEMA ...; </li><li>Move table to a different schema (rename table to a different schema), possibly using ALTER TABLE ... SET SCHEMA ...;
</li><li>nioMapped file system: automatically fall back to regular (non mapped) IO if there is a problem (out of memory exception for example). </li><li>nioMapped file system: automatically fall back to regular (non mapped) IO if there is a problem (out of memory exception for example).
</li><li>Column as parameter of function table. Issue 228. </li><li>Column as parameter of function table. Issue 228.
</li><li>Support -webPassword to require a password to shutdown the H2 Console.
</li><li>Connection pool: detect ;AUTOCOMMIT=FALSE in the database URL, and if set, </li><li>Connection pool: detect ;AUTOCOMMIT=FALSE in the database URL, and if set,
disable autocommit for all connections. disable autocommit for all connections.
</li><li>Compatibility with MS Access: support "&amp;" to concatenate text. </li><li>Compatibility with MS Access: support "&amp;" to concatenate text.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论