Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
714724b9
提交
714724b9
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
e0a0cc37
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
45 行增加
和
41 行删除
+45
-41
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
+36
-39
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+3
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
714724b9
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.122 (2009-10-28)
</h2>
<ul><li>
The native fulltext search now supports streaming CLOB data.
</li><li>
If the database URL ends with ;PAGE_STORE=TRUE and a database in
the old format exists, it is automatically converted to the new page store format
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
714724b9
...
...
@@ -14,7 +14,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
12
1
;
public
static
final
int
BUILD_ID
=
12
2
;
/**
* 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-
11
"
;
public
static
final
String
BUILD_DATE
=
"2009-10-
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
浏览文件 @
714724b9
...
...
@@ -13,6 +13,42 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
72
,
'New version available: 1.2.122 (2009-10-28)'
,
'2009-10-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
>
This
is
a
beta
version
.
</
li
><
li
>
The
native
fulltext
search
now
supports
streaming
CLOB
data
.
</
li
><
li
>
Page
store
:
opening
a
large
database
was
slow
if
it
was
not
closed
before
.
</
li
><
li
>
Page
store
:
new
write
and
read
counters
in
the
meta
data
table
.
</
li
><
li
>
If
a
database
in
the
old
format
exists
,
it
is
now
used
.
</
li
><
li
>
If
the
database
URL
ends
with
;
PAGE_STORE
=
TRUE
and
a
database
in
the
old
format
exists
,
it
is
automatically
converted
to
the
new
page
store
format
.
</
li
><
li
>
SHUTDOWN
COMPACT
now
fully
compacts
the
database
.
</
li
><
li
>
New
system
property
h2
.
pageStoreTrim
to
disable
shrinking
the
database
.
</
li
><
li
>
New
system
properties
h2
.
maxCompactCount
and
h2
.
maxCompactTime
.
</
li
><
li
>
Dropping
the
current
user
is
now
allowed
if
another
admin
user
exists
.
</
li
><
li
>
New
sorted
insert
optimization
(
see
Performance
/
Database
Performance
Tuning
).
</
li
><
li
>
The
files
h2
*-
sources
.
jar
and
h2
*-
javadoc
.
jar
are
now
in
the
Maven
repository
.
</
li
><
li
>
The
SQL
syntax
is
documented
using
(
railroad
)
diagrams
.
</
li
><
li
>
The
documentation
is
no
longer
available
in
Japanese
.
</
li
><
li
>
Better
support
GaeVFS
(
Google
App
Engine
Virtual
File
System
)
thanks
to
Thanks
to
Vince
Bonfanti
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Values
of
type
BINARY
or
BLOB
could
not
be
converted
to
the
data
type
OTHER
.
</
li
><
li
>
Certain
queries
were
not
sorted
if
subselect
queries
were
involved
.
</
li
><
li
>
More
bugs
in
the
server
-
less
multi
-
connection
mode
have
been
fixed
.
</
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
(
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
>
.
...
...
@@ -407,45 +443,6 @@ For future plans, see the 'Roadmap' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT INTO ITEM VALUES(58,
'
New
version
available
:
1
.
1
.
108
(
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
$$
);
SELECT '
newsfeed
-
rss
.
xml
' FILE,
XMLSTARTDOC() ||
XMLNODE('
rss
', XMLATTR('
version
', '
2
.
0
'),
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
714724b9
...
...
@@ -297,6 +297,9 @@ java org.h2.test.TestAll timer
/*
automate release
docs/javadocImpl file?
-sources.jar
check if sources.jar is not in installer and zip, but in maven
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论