Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
ac7b3bea
提交
ac7b3bea
authored
7月 04, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
df7f9976
全部展开
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
1474 行增加
和
1453 行删除
+1474
-1453
help.csv
h2/src/docsrc/help/help.csv
+2
-2
changelog.html
h2/src/docsrc/html/changelog.html
+3
-1
tutorial.html
h2/src/docsrc/html/tutorial.html
+7
-0
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+485
-479
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+485
-479
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+482
-480
FullTextLucene.java
h2/src/main/org/h2/fulltext/FullTextLucene.java
+1
-1
stylesheet.css
h2/src/main/org/h2/server/web/res/stylesheet.css
+8
-10
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
ac7b3bea
h2/src/docsrc/html/changelog.html
浏览文件 @
ac7b3bea
...
...
@@ -18,7 +18,9 @@ Change Log
<h1>
Change Log
</h1>
<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
(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.
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
ac7b3bea
...
...
@@ -1233,6 +1233,13 @@ SELECT * FROM FTL_SEARCH_DATA('John', 0, 0);
SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0);
CALL FTL_DROP_ALL();
</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>
<p>
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
ac7b3bea
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
ac7b3bea
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
ac7b3bea
This source diff could not be displayed because it is too large. You can
view the blob
instead.
h2/src/main/org/h2/fulltext/FullTextLucene.java
浏览文件 @
ac7b3bea
...
...
@@ -645,7 +645,7 @@ public class FullTextLucene extends FullText {
try
{
indexAccess
.
writer
.
addDocument
(
doc
);
indexAccess
.
writer
.
commit
();
//
R
ecreate Searcher with the IndexWriter's reader.
//
r
ecreate Searcher with the IndexWriter's reader.
indexAccess
.
searcher
.
close
();
indexAccess
.
reader
.
close
();
IndexReader
reader
=
indexAccess
.
writer
.
getReader
();
...
...
h2/src/main/org/h2/server/web/res/stylesheet.css
浏览文件 @
ac7b3bea
...
...
@@ -171,10 +171,10 @@ td.login {
}
.icon_hover
{
border-
top-color
:
#ffffff
;
border-
left-color
:
#ffffff
;
border-right-color
:
#aca899
;
border-bottom-color
:
#aca899
;
border-
color
:
#aca899
;
border-
radius
:
3px
;
-moz-border-radius
:
3px
;
-webkit-border-radius
:
3px
;
border-width
:
1px
;
border-style
:
solid
;
}
...
...
@@ -202,12 +202,10 @@ p.error {
input
.button
{
padding
:
3px
;
background-color
:
#ece9d8
;
border-top-color
:
#ffffff
;
border-left-color
:
#ffffff
;
border-right-color
:
#aca899
;
border-bottom-color
:
#aca899
;
-moz-border-radius
:
1px
;
-webkit-border-radius
:
1px
;
border-color
:
#aca899
;
border-radius
:
3px
;
-moz-border-radius
:
3px
;
-webkit-border-radius
:
3px
;
border-width
:
1px
;
border-style
:
solid
;
}
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
ac7b3bea
...
...
@@ -686,4 +686,4 @@ mcleod decade experience travel willing scjp himself routinely tsi retrieving
multiplied ross judson closeable watcher enqueued referent refs watch tracked
preserving disallowed restrictive dst regions kiritimati flow wider nanosecond
march april cutover julian transitions enderbury kwajalein viewport onscroll
umlaut reconstruct inclusive
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论