Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b46ebd09
提交
b46ebd09
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
54fca7d0
master
noel-pr1
plus33-master
pr/267
stumc-Issue#576
version-1.1.x
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
version-1.1
version-1.0
无相关合并请求
全部展开
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1033 行增加
和
1011 行删除
+1033
-1011
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+332
-326
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+332
-326
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+329
-327
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+32
-28
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
b46ebd09
...
@@ -18,6 +18,10 @@ Change Log
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.1.116 (2009-07-18)
</h2>
<ul><li>
Server-less multi-connection mode: more bugs are fixed.
<ul><li>
Server-less multi-connection mode: more bugs are fixed.
</li><li>
The built-in help (INFORMATION_SCHEMA.HELP) is smaller, shrinking the jar file size a bit.
</li><li>
The built-in help (INFORMATION_SCHEMA.HELP) is smaller, shrinking the jar file size a bit.
</li><li>
H2 Console: column of tables of non-default schemas are now also listed,
</li><li>
H2 Console: column of tables of non-default schemas are now also listed,
...
...
This diff is collapsed.
Click to expand it.
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
b46ebd09
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
b46ebd09
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
b46ebd09
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
b46ebd09
...
@@ -14,22 +14,22 @@ public class Constants {
...
@@ -14,22 +14,22 @@ public class Constants {
/**
/**
* The build id is incremented for each public release.
* The build id is incremented for each public release.
*/
*/
public
static
final
int
BUILD_ID
=
11
5
;
public
static
final
int
BUILD_ID
=
11
6
;
/**
/**
* The build id of the last stable release.
* The build id of the last stable release.
*/
*/
public
static
final
int
BUILD_ID_STABLE
=
11
4
;
public
static
final
int
BUILD_ID_STABLE
=
11
5
;
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE
=
"2009-0
6-27
"
;
public
static
final
String
BUILD_DATE
=
"2009-0
7-18
"
;
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2009-06-
01
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-06-
27
"
;
/**
/**
* The TCP protocol version number 5. This protocol is used by the TCP
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
b46ebd09
...
@@ -13,6 +13,38 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
...
@@ -13,6 +13,38 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
66
,
'New version available: 1.1.116 (2009-07-18)'
,
'2009-07-18 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
(
You
may
have
to
click
'Refresh'
).
<
br
/>
<
b
>
Changes
and
new
functionality
:
</
b
>
<
ul
><
li
>
Result
sets
are
now
read
-
only
by
default
.
</
li
><
li
>
New
system
property
h2
.
defaultResultSetConcurrency
.
</
li
><
li
>
Using
an
invalid
result
set
type
or
concurrency
now
throws
an
exception
.
</
li
><
li
>
H2
Console
:
column
of
non
-
default
schemas
are
now
also
listed
.
</
li
><
li
>
H2
Console
:
Oracle
system
tables
are
no
longer
listed
.
</
li
><
li
>
PG
Server
:
improved
compatibility
and
new
system
property
h2
.
pgClientEncoding
.
Thanks
a
lot
to
Sergi
Vladykin
for
the
patch
!
</
li
><
li
>
To
enable
the
page
store
mechanism
,
append
;
PAGE_STORE
=
TRUE
to
the
URL
.
This
mechanism
is
now
relatively
stable
.
</
li
><
li
>
The
built
-
in
help
is
smaller
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Server
-
less
multi
-
connection
mode
:
more
bugs
are
fixed
.
</
li
><
li
>
If
a
pooled
connection
was
not
closed
,
an
exception
could
occur
.
</
li
><
li
>
Removing
an
auto
-
increment
or
identity
column
didn
't remove the sequence.
</li><li>Fulltext search: an exception was thrown when updating a value sometimes.
</li><li>The Recover tool did not always work.
</li><li>The soft-references cache (CACHE_TYPE=SOFT_LRU) could throw an exception.
</li></ul>
For details, see the '
Change
Log
' at
http://www.h2database.com/html/changelog.html
<br />
For future plans, see the '
Roadmap
' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT INTO ITEM VALUES(65,
INSERT INTO ITEM VALUES(65,
'
New
version
available
:
1
.
1
.
115
(
2009
-
06
-
27
)
', '
2009
-
06
-
27
12
:
00
:
00
',
'
New
version
available
:
1
.
1
.
115
(
2009
-
06
-
27
)
', '
2009
-
06
-
27
12
:
00
:
00
',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
...
@@ -411,34 +443,6 @@ For future plans, see the 'Roadmap' page at
...
@@ -411,34 +443,6 @@ For future plans, see the 'Roadmap' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
$$
);
INSERT INTO ITEM VALUES(52,
'
New
version
available
:
1
.
1
.
102
(
beta
;
2008
-
10
-
24
)
', '
2008
-
10
-
24
12
:
00
:
00
',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
(You may have to click '
Refresh
').
<br />
<b>Changes and new functionality:</b>
<ul><li>The French translation of the H2 Console has been improved by Olivier Parent.
</li><li>Translating the H2 Console is now simpler.
</li><li>Common exception (error code 23*) are no longer written to the .trace.db file by default.
</li></ul>
<b>Bugfixes:</b>
<ul><li>ResultSetMetaData.getColumnName now returns the alias name except for columns.
</li><li>Temporary files are now deleted when the database is closed, even
if they were not garbage collected so far.
</li><li>There was a memory leak when creating and dropping tables and
indexes in a loop (persistent database only).
</li><li>SET LOG 2 was not effective if executed after opening the database.
</li><li>In-memory databases don'
t
write
LOBs
to
files
any
longer
.
</
li
><
li
>
Self
referencing
constraints
didn
't restrict deleting rows that reference
itself if there is another row that references it.
</li></ul>
For details, see the '
Change
Log
' at
http://www.h2database.com/html/changelog.html
<br />
For future plans, see the '
Roadmap
' page at
http://www.h2database.com/html/roadmap.html
$$);
SELECT
'newsfeed-rss.xml'
FILE
,
SELECT
'newsfeed-rss.xml'
FILE
,
XMLSTARTDOC
()
||
XMLSTARTDOC
()
||
XMLNODE
(
'rss'
,
XMLATTR
(
'version'
,
'2.0'
),
XMLNODE
(
'rss'
,
XMLATTR
(
'version'
,
'2.0'
),
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论