Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
f5182b7b
提交
f5182b7b
authored
10月 11, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
d059ca51
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1274 行增加
和
1252 行删除
+1274
-1252
changelog.html
h2/src/docsrc/html/changelog.html
+8
-4
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+399
-393
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+446
-440
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+394
-392
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+25
-21
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
f5182b7b
...
...
@@ -18,19 +18,23 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.121 (2009-10-11)
</h2>
<ul><li>
Better support GaeVFS (Google App Engine Virtual File System) thanks to Thanks to Vince Bonfanti.
</li><li>
CSVREAD
: the function
didn't close the file. Thanks to Vince Bonfanti for the patch!
</li><li>
CSVREAD didn't close the file. Thanks to Vince Bonfanti for the patch!
</li><li>
If a database in the old format exists, it is now used.
The system property is used for new databases, or if databases exist
in both formats. In any case, the flag in the URL overrides this logic.
</li><li>
Page store
: l
arge values in indexed columns could corrupt the index.
</li><li>
Page store
bugs were fixed. L
arge values in indexed columns could corrupt the index.
</li><li>
The page store did not work when using Retrotranslator (because the Retrotranslator doesn't
support Integer.reverse and Long.reverse).
</li><li>
New system property h2.pageStoreTrim to disable shrinking the database
size
when closing
</li><li>
New system property h2.pageStoreTrim to disable shrinking the database when closing
(disabled by default, meaning by default the database is trimmed).
</li></ul>
<h2>
Version 1.2.120 (2009-
09-26
)
</h2>
<h2>
Version 1.2.120 (2009-
10-04
)
</h2>
<ul><li>
This is a beta version.
</li><li>
Large updates could throw an ArrayIndexOutOfBoundsException in RowList.writeRow.
</li><li>
In version 1.2, the following system properties are now enabled by default:
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
f5182b7b
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
f5182b7b
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
f5182b7b
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
f5182b7b
...
...
@@ -14,7 +14,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
12
0
;
public
static
final
int
BUILD_ID
=
12
1
;
/**
* The build id of the last stable release.
...
...
@@ -32,7 +32,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-10-
04
"
;
public
static
final
String
BUILD_DATE
=
"2009-10-
11
"
;
/**
* The build date is updated for each public release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
f5182b7b
...
...
@@ -13,6 +13,31 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
71
,
'New version available: 1.2.121 (2009-10-11)'
,
'2009-10-11 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
>
This
is
a
beta
version
.
</
li
><
li
>
If
a
database
in
the
old
format
exists
,
it
is
now
used
.
</
li
><
li
>
New
system
property
h2
.
pageStoreTrim
to
disable
shrinking
the
database
.
</
li
></
ul
>
Better
support
GaeVFS
(
Google
App
Engine
Virtual
File
System
)
thanks
to
Thanks
to
Vince
Bonfanti
.
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
</
li
><
li
>
</
li
><
li
>
Page
store
bugs
were
fixed
.
</
li
><
li
>
The
page
store
did
not
work
when
using
Retrotranslator
.
</
li
><
li
>
CSVREAD
didn
't close the file. Thanks to Vince Bonfanti for the patch!
</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(70,
'
New
version
available
:
1
.
2
.
120
(
2009
-
10
-
04
)
', '
2009
-
10
-
04
12
:
00
:
00
',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
...
...
@@ -422,27 +447,6 @@ For future plans, see the 'Roadmap' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
INSERT INTO ITEM VALUES(57,
'
New
version
available
:
1
.
1
.
107
(
beta
;
2009
-
01
-
24
)
', '
2009
-
01
-
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>Enabling the trace mechanism by creating a file is no longer supported.
</li><li>The MySQL compatibility extension fromUnixTime now used the English locale.
</li></ul>
<b>Bugfixes:</b>
<ul><li>Some DatabaseMetaData operations did not work for non-admin users.
</li><li>When using LOG=2, the index file grew quickly in some situations.
</li><li>In versions 1.1.105-106, old encrypted script files could not be processed.
</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
,
XMLSTARTDOC
()
||
XMLNODE
(
'rss'
,
XMLATTR
(
'version'
,
'2.0'
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论