Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d3f23938
提交
d3f23938
authored
16 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
3ca19060
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
44 行增加
和
31 行删除
+44
-31
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+38
-29
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
d3f23938
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.1.107 (2009-02-28)
</h2>
<ul><li>
When the shutdown hook closed the database, the last log file
was deleted too early. This could cause uncommitted changes to be persisted.
</li><li>
JdbcConnectionPool: it was possible to set a negative connection pool size.
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
d3f23938
...
...
@@ -14,7 +14,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
10
7
;
public
static
final
int
BUILD_ID
=
10
8
;
/**
* The build id of the last stable release.
...
...
@@ -24,7 +24,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-0
1-24
"
;
public
static
final
String
BUILD_DATE
=
"2009-0
2-28
"
;
/**
* The build date is updated for each public release.
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
d3f23938
...
...
@@ -13,6 +13,44 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
58
,
'New version available: 1.1.108 (beta; 2009-02-28)'
,
'2009-02-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
>
Support
for
multiple
read
-
write
connections
without
starting
a
server
.
</
li
><
li
>
MySQL
compatibility
for
CREATE
TABLE
is
improved
.
</
li
><
li
>
The
exception
message
of
failed
INSERT
statements
now
includes
all
values
.
</
li
><
li
>
The
DbStarter
now
closes
all
connections
to
the
configured
database
.
</
li
><
li
>
Improved
exception
message
when
connecting
to
a
just
started
server
fails
.
</
li
><
li
>
Connection
.
isValid
is
a
bit
faster
.
</
li
><
li
>
H2
Console
:
The
autocomplete
feature
has
been
improved
a
bit
.
</
li
><
li
>
When
restarting
a
web
application
in
Tomcat
,
an
exception
was
thrown
sometimes
.
The
root
cause
of
the
problem
is
now
documented
in
the
FAQ
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
When
the
shutdown
hook
closed
the
database
,
the
last
log
file
was
deleted
too
early
.
This
could
cause
uncommitted
changes
to
be
persisted
.
</
li
><
li
>
The
database
file
locking
mechanism
didn
't work correctly on Mac OS.
</li><li>Recovery did not work if there were more than 255 lobs stored as files.
</li><li>If opening a database failed with an out of memory exception, some files were not closed.
</li><li>The WebServlet did not close the database when un-deploying the web application.
</li><li>JdbcConnectionPool: it was possible to set a negative connection pool size.
</li><li>Fulltext search did not support table names with a backslash.
</li><li>A bug in the internal IntArray was fixed.
</li><li>The H2 Console web application (war file) now supports all Unicode characters.
</li><li>DATEADD does no longer require that the argument is a timestamp.
</li><li>Some built-in functions reported the wrong precision, scale, and display size.
</li><li>Optimizer: the expected runtime calculation was incorrect. The fixed calculation
should give slightly better query plans when using many joins.
</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(57,
'
New
version
available
:
1
.
1
.
107
(
beta
;
2009
-
01
-
24
)
', '
2009
-
01
-
24
12
:
00
:
00
',
...
...
@@ -405,35 +443,6 @@ For future plans, see the 'Roadmap' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT
INTO
ITEM
VALUES
(
45
,
'New version available: 1.0.75 (2008-07-14)'
,
'2008-07-14 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
JaQu
(
Java
Query
)
tool
has
been
improved
.
</
li
><
li
>
The
H2
Console
can
be
started
with
an
open
connection
to
inspect
a
database
while
debugging
.
</
li
><
li
>
The
referential
constraint
checking
performance
has
been
improvement
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Running
out
of
memory
could
result
in
incomplete
transactions
or
corrupted
databases
.
Fixed
.
</
li
><
li
>
CSVREAD
did
not
process
NULL
correctly
when
using
a
whitespace
field
separator
.
</
li
><
li
>
Stopping
a
WebServer
didn
't always work. Fixed.
</li><li>Sometimes, order by in a query that uses the same table multiple times didn'
t
work
.
</
li
><
li
>
A
multi
version
concurrency
(
MVCC
)
problem
has
been
fixed
.
</
li
><
li
>
Some
views
with
multiple
joined
tables
didn
't work.
</li><li>The Oracle mode now allows multiple rows with NULL in a unique index.
</li><li>Some database metadata calls returned the wrong data type for DATA_TYPE columns.
</li><li>A bug int the Lucene fulltext implementation has been fixed.
</li><li>The character '
$
' could not be used in identifier names.
</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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论