Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
ac7b3bea
提交
ac7b3bea
authored
13 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
df7f9976
master
noel-pr1
plus33-master
pr/267
stumc-Issue#576
version-1.4.198
version-1.4.197
version-1.4.196
version-1.4.195
version-1.4.194
version-1.4.193
version-1.4.192
version-1.4.191
version-1.4.190
version-1.4.188
version-1.4.187
version-1.4.186
version-1.4.185
version-1.4.184
version-1.4.183
version-1.4.182
version-1.4.181
version-1.4.178
version-1.4.177
version-1.3
version-1.2
无相关合并请求
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
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
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
h2/src/docsrc/html/changelog.html
浏览文件 @
ac7b3bea
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
h2/src/docsrc/html/tutorial.html
浏览文件 @
ac7b3bea
...
@@ -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 diff is collapsed.
Click to expand it.
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.
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/fulltext/FullTextLucene.java
浏览文件 @
ac7b3bea
...
@@ -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
();
//
R
ecreate Searcher with the IndexWriter's reader.
//
r
ecreate 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
();
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/server/web/res/stylesheet.css
浏览文件 @
ac7b3bea
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
ac7b3bea
...
@@ -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
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论