Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
1c2cd451
提交
1c2cd451
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
9a93717c
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1167 行增加
和
1158 行删除
+1167
-1158
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+384
-372
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+384
-372
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+376
-372
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+15
-38
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
1c2cd451
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.1.119 (2009-09-26)
</h2>
<ul><li>
SQL statements in the exception message are no longer included if they contain '--hide--'.
</li><li>
Temporary local tables did not always work after reconnect if AUTO_SERVER=TRUE
</li><li>
New system property h2.defaultMaxLengthInplaceLob to change the default maximum size
...
...
This diff is collapsed.
Click to expand it.
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
1c2cd451
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
1c2cd451
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
1c2cd451
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
1c2cd451
...
...
@@ -14,22 +14,22 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
11
8
;
public
static
final
int
BUILD_ID
=
11
9
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
11
7
;
public
static
final
int
BUILD_ID_STABLE
=
11
8
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-09-
04
"
;
public
static
final
String
BUILD_DATE
=
"2009-09-
26
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
8-09
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
9-04
"
;
/**
* 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
浏览文件 @
1c2cd451
...
...
@@ -13,7 +13,12 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
/*
INSERT
INTO
ITEM
VALUES
(
69
,
'New version available: 1.1.119 (2009-09-26)'
,
'2009-09-26 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
new
page
store
mechanism
is
now
alpha
-
level
quality
.
</
li
><
li
>
New
committer
:
Christian
Peter
.
He
works
for
Docware
.
</
li
><
li
>
The
context
class
loader
is
used
for
user
defined
classes
.
...
...
@@ -24,8 +29,9 @@ CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARC
</
li
><
li
>
The
Recover
tool
now
also
processes
the
log
files
.
</
li
><
li
>
New
sample
application
that
shows
how
to
pass
data
to
a
trigger
.
</
li
><
li
>
The
cache
algorithm
TQ
is
disabled
.
</
li
><
li
>
SQL
statements
in
the
exception
are
no
longer
always
included
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
ChangeFileEncryption
did
not
work
with
Lob
subdirectories
.
</
li
><
li
>
SELECT
COUNT
(
*
)
FROM
SYSTEM_RANGE
(...)
returned
the
wrong
result
.
</
li
><
li
>
More
bugs
in
the
server
-
less
multi
-
connection
mode
have
been
fixed
.
...
...
@@ -35,9 +41,14 @@ CREATE TABLE ITEM(ID INT PRIMARY KEY, TITLE VARCHAR, ISSUED TIMESTAMP, DESC VARC
</li><li>Issue 121: JaQu: new simple update and merge methods.
</li><li>Issue 120: JaQu didn'
t
close
result
sets
.
</
li
><
li
>
Issue
119
:
JaQu
creates
wrong
WHERE
conditions
on
some
inputs
.
</
li
><
li
>
Temporary
local
tables
did
not
always
work
after
reconnect
if
AUTO_SERVER
=
TRUE
</
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
(
68
,
'New version available: 1.1.118 (2009-09-04)'
,
'2009-09-04 12:00:00'
,
...
...
@@ -433,40 +444,6 @@ For future plans, see the 'Roadmap' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT INTO ITEM VALUES(55,
'
New
version
available
:
1
.
1
.
105
(
beta
;
2008
-
12
-
19
)
', '
2008
-
12
-
19
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>New meta data column TABLES.LAST_MODIFICATION.
</li><li>The setting STORAGE=TEXT is no longer supported.
</li><li>Natural join: the joined columns are not repeated any more.
</li><li>MySQL compatibility: support for := assignment.
</li><li>INSERT INTO TEST(SELECT * FROM TEST) is now supported.
</li><li>H2 Console: columns are now listed for up to 500 tables.
</li><li>H2 Console: support for the '
command
' key.
</li><li>JaQu: the maximum length of a column can now be defined.
</li><li>The fulltext search documentation has been improved.
</li><li>Ridvan Agar has completed the Turkish translation.
</li></ul>
<b>Bugfixes:</b>
<ul><li>The tool DeleteDbFiles could deleted LOB files of other databases.
</li><li>When used in a subquery, LIKE and IN(..) did not work correctly.
</li><li>ARRAY_GET returned the wrong data type.
</li><li>User defined aggregate functions: the method getType was incorrect.
</li><li>User defined aggregate functions did not work sometimes.
</li><li>Each session threw an invisible exception when garbage collected.
</li><li>Foreign key constraints that refer to a quoted column did not work.
</li><li>Shell: line comments didn'
t
work
correctly
.
</
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
'),
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论