Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
43c1de08
提交
43c1de08
authored
5月 01, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
56c1cf96
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
1800 行增加
和
1795 行删除
+1800
-1795
changelog.html
h2/src/docsrc/html/changelog.html
+5
-1
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+589
-583
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+589
-583
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+584
-582
cheatSheet.html
h2/src/installer/cheatSheet.html
+1
-1
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+25
-41
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+3
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
43c1de08
...
@@ -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.112 (2009-05-01)
</h2>
<ul><li>
JdbcPreparedStatement.toString() could throw a NullPointerException.
<ul><li>
JdbcPreparedStatement.toString() could throw a NullPointerException.
</li><li>
EclipseLink: Added H2Platform.supportsIdentity().
</li><li>
EclipseLink: Added H2Platform.supportsIdentity().
</li><li>
Connection pool: the default login timeout is now 5 minutes.
</li><li>
Connection pool: the default login timeout is now 5 minutes.
...
@@ -34,7 +38,7 @@ Change Log
...
@@ -34,7 +38,7 @@ Change Log
</li><li>
The MERGE statement now returns 0 as the generated key if the row was updated.
</li><li>
The MERGE statement now returns 0 as the generated key if the row was updated.
</li><li>
Running code coverage is now automated.
</li><li>
Running code coverage is now automated.
</li><li>
A file system implementation can now be registered using FileSystem.register.
</li><li>
A file system implementation can now be registered using FileSystem.register.
The database file system is no longer included in the jar file, it moved to the test section.
</li><li>
The database file system is no longer included in the jar file, it moved to the test section.
</li></ul>
</li></ul>
<h2>
Version 1.1.111 (2009-04-10)
</h2>
<h2>
Version 1.1.111 (2009-04-10)
</h2>
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
43c1de08
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
43c1de08
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
43c1de08
差异被折叠。
点击展开。
h2/src/installer/cheatSheet.html
浏览文件 @
43c1de08
...
@@ -80,7 +80,7 @@ td {
...
@@ -80,7 +80,7 @@ td {
<h1>
H2 Database Engine Cheat Sheet
</h1>
<h1>
H2 Database Engine Cheat Sheet
</h1>
<h2>
Downloads
</h2>
<h2>
Downloads
</h2>
<a
href=
"http://www.h2database.com/h2-setup-2009-04-10.exe"
>
Windows Installer
</a>
-
<a
href=
"http://www.h2database.com/h2-setup-2009-04-10.exe"
>
Windows Installer
</a>
-
<a
href=
"http://www.h2database.com/h2-2009-04-10.zip"
>
Zip
</a>
-
<a
href=
"http://www.h2database.com/h2-2009-04-10.zip"
>
Zip
</a>
-
<a
href=
"http://repo1.maven.org/maven2/com/h2database/h2/1.1.111/h2-1.1.111.jar"
>
Jar
</a>
<a
href=
"http://repo1.maven.org/maven2/com/h2database/h2/1.1.111/h2-1.1.111.jar"
>
Jar
</a>
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
43c1de08
...
@@ -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
1
;
public
static
final
int
BUILD_ID
=
11
2
;
/**
/**
* The build id of the last stable release.
* The build id of the last stable release.
*/
*/
public
static
final
int
BUILD_ID_STABLE
=
11
0
;
public
static
final
int
BUILD_ID_STABLE
=
11
1
;
/**
/**
* 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
4-10
"
;
public
static
final
String
BUILD_DATE
=
"2009-0
5-01
"
;
/**
/**
* 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-04-
03
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-04-
10
"
;
/**
/**
* 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
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
43c1de08
...
@@ -13,6 +13,31 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
...
@@ -13,6 +13,31 @@ 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
(
62
,
'New version available: 1.1.112 (2009-05-01)'
,
'2009-05-01 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
>
MERGE
now
returns
0
as
the
generated
on
update
.
</
li
><
li
>
A
file
system
implementation
can
now
be
registered
.
</
li
><
li
>
The
database
file
system
is
no
longer
included
.
</
li
><
li
>
EclipseLink
:
Added
H2Platform
.
supportsIdentity
().
</
li
><
li
>
Connection
pool
:
the
login
timeout
is
now
5
minutes
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Opening
large
databases
could
become
slow
.
</
li
><
li
>
GROUP
BY
queries
with
a
self
-
join
were
wrong
sometimes
.
</
li
><
li
>
Bugs
in
the
server
-
less
multi
-
connection
mode
have
been
fixed
.
</
li
><
li
>
JdbcPreparedStatement
.
toString
()
could
fail
.
</
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
(
61
,
INSERT
INTO
ITEM
VALUES
(
61
,
'New version available: 1.1.111 (2009-04-10)'
,
'2009-04-10 12:00:00'
,
'New version available: 1.1.111 (2009-04-10)'
,
'2009-04-10 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
>
.
...
@@ -398,47 +423,6 @@ For future plans, see the 'Roadmap' page at
...
@@ -398,47 +423,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
(
49
,
'New version available: 1.0.79 (2008-09-26)'
,
'2008-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
>
Row
level
locking
for
MVCC
is
now
enabled
.
</
li
><
li
>
Multiple
processes
can
now
access
the
same
database
by
appending
;
AUTO_SERVER
=
TRUE
to
the
database
URL
.
</
li
><
li
>
The
database
supports
the
SHOW
command
for
better
MySQL
and
PostgreSQL
compatibility
.
</
li
><
li
>
Result
sets
with
just
a
unique
index
can
now
be
updated
.
</
li
><
li
>
Linked
tables
can
now
share
the
connection
.
</
li
><
li
>
Linked
tables
can
now
be
read
-
only
.
</
li
><
li
>
Linked
tables
:
the
schema
name
can
now
be
set
.
</
li
><
li
>
Linked
tables
:
worked
around
a
bug
in
Oracle
with
the
CHAR
data
type
.
</
li
><
li
>
Temporary
linked
tables
are
now
supported
.
</
li
><
li
>
Faster
storage
re
-
use
algorithm
thanks
to
Greg
Dhuse
from
cleversafe
.
com
.
</
li
><
li
>
Faster
hash
code
calculation
for
large
binary
arrays
.
</
li
><
li
>
Multi
-
Version
Concurrency
may
no
longer
be
used
when
using
the
multi
-
threaded
kernel
feature
.
</
li
><
li
>
The
H2
Console
now
abbreviates
large
texts
in
results
.
</
li
><
li
>
SET
SCHEMA_SEARCH_PATH
is
now
documented
.
</
li
><
li
>
Can
now
start
a
TCP
server
with
port
0
(
automatically
select
a
port
).
</
li
><
li
>
The
server
tool
now
displays
the
correct
IP
address
if
networked
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Multiple
UNION
queries
could
not
be
used
in
derived
tables
.
</
li
><
li
>
It
was
possible
to
create
tables
in
read
-
only
databases
.
</
li
><
li
>
SET
SCHEMA
did
not
work
for
views
.
</
li
><
li
>
The
maximum
log
file
size
setting
was
ignored
for
large
databases
.
</
li
><
li
>
The
data
type
JAVA_OBJECT
could
not
be
used
in
updatable
result
sets
.
</
li
><
li
>
The
system
property
h2
.
optimizeInJoin
did
not
work
correctly
.
</
li
><
li
>
Conditions
such
as
ID
=?
AND
ID
&
gt
;
?
were
slow
.
</
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'
),
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
43c1de08
...
@@ -290,6 +290,9 @@ java org.h2.test.TestAll timer
...
@@ -290,6 +290,9 @@ java org.h2.test.TestAll timer
/*
/*
disable page store files, move multi dimension tool
integrate grammar help or move to docs (except syntax)
test case for running out of disk space (using a special file system)
test case for running out of disk space (using a special file system)
test shell tool on windows with special characters, try with
test shell tool on windows with special characters, try with
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论