提交 281c1e58 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 2585b4ea
......@@ -18,7 +18,17 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>Nested outer joins without brackets were not working as expected. Example:
<ul><li>New feature INSERT INTO ... DIRECT SELECT, mainly to speed up loading tables
from a CSV file. When using DIRECT, then the results from the query are directly applied
in the target table without any intermediate step (without temporary file).
</li><li>Converting binary data to UUID was incorrect when the converting more than 31 bytes.
Now always the first 16 bytes are used.
</li><li>Improved date / time arithmetics. Now supported are
multiplying and dividing a time with / by a number,
adding and subtracting a time to / from a time or date,
subtracting a time or timestamp from a timestamp.
</li><li>The Ant build script has been removed because it is no longer up to date.
</li><li>Nested outer joins without brackets were not working as expected. Example:
select * from a inner join b inner join c on c.id = b.id on b.id = a.id;
</li><li>JMX (the Java management extension) is now supported. Issue 253.
</li><li>Creating a comment on a column didn't work if the schema name was equal the database name.
......
......@@ -537,6 +537,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Require appending DANGEROUS=TRUE when using certain dangerous settings such as
LOG=0, LOG=1, LOCK_MODE=0, disabling FILE_LOCK,...
</li><li>Allow to defragment at runtime (similar to SHUTDOWN DEFRAG) in a background thread.
</li><li>Support for Thread.interrupt to cancel running statements.
</li></ul>
<h2>Not Planned</h2>
......
......@@ -1132,7 +1132,7 @@ org.h2.fulltext.FullText.searchData(conn, text, limit, offset);
<h3>Using the Lucene Fulltext Search</h3>
<p>
To use the Lucene full text search, you need the Lucene library in the classpath.
Currently Apache Lucene version 2.x is used by default for H2 version 1.2.x,
Currently Apache Lucene version 2.x is used by default for H2 version 1.2.x,
and Lucene version 3.x is used by default for H2 version 1.3.x.
How to do that depends on the application; if you use the H2 Console, you can add the Lucene
jar file to the environment variables <code>H2DRIVERS</code> or
......
......@@ -663,3 +663,4 @@ presentation defragment queried activities knut tailored dhis statistical norway
mailto dong adconion edong twitter consortium ogc geo geospatial flexibility
mbeans unregisters
arithmetics subtracting multiplying dividing
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论