Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
ca083f04
提交
ca083f04
authored
4月 10, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
4cdc3057
全部展开
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
1088 行增加
和
1779 行删除
+1088
-1779
changelog.html
h2/src/docsrc/html/changelog.html
+7
-135
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+346
-583
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+366
-603
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+341
-420
release.txt
h2/src/installer/release.txt
+1
-1
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+23
-30
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+0
-3
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
ca083f04
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
ca083f04
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
ca083f04
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
ca083f04
差异被折叠。
点击展开。
h2/src/installer/release.txt
浏览文件 @
ca083f04
...
...
@@ -3,7 +3,7 @@ Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
Update the changelog (add new version)
Update the newsfeed
Documentation: check if all Javadoc files are in the index
Check that is no TODO in the docs
Check that
there
is no TODO in the docs
Check code coverage
Run regression test with JDK 1.4 and 1.5
Use latest versions of other dbs
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
ca083f04
...
...
@@ -14,22 +14,22 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
11
0
;
public
static
final
int
BUILD_ID
=
11
1
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
1
09
;
public
static
final
int
BUILD_ID_STABLE
=
1
10
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-04-
03
"
;
public
static
final
String
BUILD_DATE
=
"2009-04-
10
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
3-14
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
4-03
"
;
/**
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
ca083f04
...
...
@@ -13,6 +13,29 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
61
,
'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
>
.
(
You
may
have
to
click
'Refresh'
).
<
br
/>
<
b
>
Changes
and
new
functionality
:
</
b
>
<
ul
><
li
>
In
-
memory
databases
can
now
run
inside
the
Google
App
Engine
.
</
li
><
li
>
The
Shell
tool
no
longer
truncates
results
with
only
one
column
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Queries
that
are
ordered
by
an
indexed
column
returned
no
rows
in
certain
cases
.
</
li
><
li
>
The
wrong
exception
was
thrown
when
using
unquoted
text
for
some
SQL
statements
.
</
li
><
li
>
The
built
-
in
connection
pool
did
not
roll
back
transactions
and
enable
autocommit
enabled
after
closing
a
connection
.
</
li
><
li
>
Sometimes
a
StackOverflow
occurred
when
checking
for
deadlock
.
</
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
(
60
,
'New version available: 1.1.110 (2009-04-03)'
,
'2009-04-03 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
...
@@ -416,36 +439,6 @@ For future plans, see the 'Roadmap' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
INSERT
INTO
ITEM
VALUES
(
48
,
'New version available: 1.0.78 (2008-08-28)'
,
'2008-08-28 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
>
Column
aliases
can
now
be
used
in
GROUP
BY
and
HAVING
.
</
li
><
li
>
Java
methods
with
variable
number
of
parameters
can
now
be
used
(
for
Java
1
.
5
or
newer
).
</
li
><
li
>
The
build
target
'build jarSmall'
now
includes
the
embedded
database
.
</
li
><
li
>
JdbcDataSource
now
keeps
the
password
in
a
char
array
where
possible
.
</
li
><
li
>
Jason
Brittain
has
contributed
MySQL
date
functions
.
Thanks
a
lot
!
They
are
not
in
the
h2
.
jar
file
currently
,
but
in
src
/
tools
/
org
/
h2
/
mode
/
FunctionsMySQL
.
java
.
To
install
,
add
this
class
to
the
classpath
and
call
FunctionsMySQL
.
register
(
conn
)
in
the
Java
code
.
</
li
><
li
>
The
Japanese
translation
has
been
improved
by
Masahiro
Ikemoto
.
Thanks
a
lot
!
</
li
><
li
>
The
documentation
no
longer
uses
a
frameset
(
except
the
Javadocs
).
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
The
H2
Console
replaced
an
empty
user
name
with
a
single
space
.
</
li
><
li
>
ResultSet
.
absolute
did
not
always
work
with
large
result
sets
.
</
li
><
li
>
When
using
DB_CLOSE_DELAY
,
sometimes
a
NullPointerException
is
thrown
when
the
database
is
opened
almost
at
the
same
time
as
it
is
closed
automatically
.
Thanks
a
lot
to
Dmitry
Pekar
for
finding
this
!
</
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'
),
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
ca083f04
...
...
@@ -282,9 +282,6 @@ java org.h2.test.TestAll timer
/*
test web site with firefox 3, internet explorer, opera, safari, google chrome
test loading time of page
automated tests (status on web site)
EclEmma
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论