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

Documentation.

...@@ -1028,8 +1028,8 @@ SET [ DATABASE ] COLLATION ...@@ -1028,8 +1028,8 @@ SET [ DATABASE ] COLLATION
"," ","
Sets the collation used for comparing strings. Sets the collation used for comparing strings.
This command can only be executed if there are no tables defined. This command can only be executed if there are no tables defined.
See ""java.text.Collator"" for details about the supported collations and the STRENGTH See ""java.text.Collator"" for details about the supported collations and the STRENGTH
(PRIMARY is usually case- and umlaut-insensitive; SECONDARY is case-insensitive but umlaut-sensitive; (PRIMARY is usually case- and umlaut-insensitive; SECONDARY is case-insensitive but umlaut-sensitive;
TERTIARY is both case- and umlaut-sensitive; IDENTICAL is sensitive to all differences and only affects ordering). TERTIARY is both case- and umlaut-sensitive; IDENTICAL is sensitive to all differences and only affects ordering).
The ICU4J collator is used if it is in the classpath. The ICU4J collator is used if it is in the classpath.
......
...@@ -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>H2 Console autocomplete: the autocomplete feature didn't support quoted names. <ul><li>ROWNUM() did not work in combination with IN(..). The following query did not work as expected:
select * from (select rownum r from test) where r in (1, 2).
</li><li>H2 Console autocomplete: the autocomplete feature didn't support quoted names.
</li><li>It is now longer allowed to create an index on a CLOB or BLOB column </li><li>It is now longer allowed to create an index on a CLOB or BLOB column
(except for in-memory databases or indexes), because recovery doesn't work (except for in-memory databases or indexes), because recovery doesn't work
on such columns. Fulltext indexes on such column are still supported of course. on such columns. Fulltext indexes on such column are still supported of course.
......
...@@ -1233,6 +1233,13 @@ SELECT * FROM FTL_SEARCH_DATA('John', 0, 0); ...@@ -1233,6 +1233,13 @@ SELECT * FROM FTL_SEARCH_DATA('John', 0, 0);
SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0); SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0);
CALL FTL_DROP_ALL(); CALL FTL_DROP_ALL();
</pre> </pre>
<p>
The Lucene fulltext search implementation is not synchronized internally.
If you update the database and query the fulltext search concurrently
(directly using the Java API of H2 or Lucene itself), you need to ensure
operations are properly synchronized. If this is not the case, you may get
exceptions such as <code>org.apache.lucene.store.AlreadyClosedException: this IndexReader is closed</code>.
</p>
<h2 id="user_defined_variables">User-Defined Variables</h2> <h2 id="user_defined_variables">User-Defined Variables</h2>
<p> <p>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -645,7 +645,7 @@ public class FullTextLucene extends FullText { ...@@ -645,7 +645,7 @@ public class FullTextLucene extends FullText {
try { try {
indexAccess.writer.addDocument(doc); indexAccess.writer.addDocument(doc);
indexAccess.writer.commit(); indexAccess.writer.commit();
//Recreate Searcher with the IndexWriter's reader. // recreate Searcher with the IndexWriter's reader.
indexAccess.searcher.close(); indexAccess.searcher.close();
indexAccess.reader.close(); indexAccess.reader.close();
IndexReader reader = indexAccess.writer.getReader(); IndexReader reader = indexAccess.writer.getReader();
......
...@@ -171,10 +171,10 @@ td.login { ...@@ -171,10 +171,10 @@ td.login {
} }
.icon_hover { .icon_hover {
border-top-color:#ffffff; border-color:#aca899;
border-left-color:#ffffff; border-radius: 3px;
border-right-color:#aca899; -moz-border-radius: 3px;
border-bottom-color:#aca899; -webkit-border-radius: 3px;
border-width:1px; border-width:1px;
border-style:solid; border-style:solid;
} }
...@@ -202,12 +202,10 @@ p.error { ...@@ -202,12 +202,10 @@ p.error {
input.button { input.button {
padding: 3px; padding: 3px;
background-color: #ece9d8; background-color: #ece9d8;
border-top-color: #ffffff; border-color: #aca899;
border-left-color: #ffffff; border-radius: 3px;
border-right-color: #aca899; -moz-border-radius: 3px;
border-bottom-color: #aca899; -webkit-border-radius: 3px;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
} }
......
...@@ -686,4 +686,4 @@ mcleod decade experience travel willing scjp himself routinely tsi retrieving ...@@ -686,4 +686,4 @@ mcleod decade experience travel willing scjp himself routinely tsi retrieving
multiplied ross judson closeable watcher enqueued referent refs watch tracked multiplied ross judson closeable watcher enqueued referent refs watch tracked
preserving disallowed restrictive dst regions kiritimati flow wider nanosecond preserving disallowed restrictive dst regions kiritimati flow wider nanosecond
march april cutover julian transitions enderbury kwajalein viewport onscroll march april cutover julian transitions enderbury kwajalein viewport onscroll
umlaut reconstruct inclusive
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论