Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
67d536f1
提交
67d536f1
authored
11月 20, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
a5d2b09e
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
19 行增加
和
49 行删除
+19
-49
changelog.html
h2/src/docsrc/html/changelog.html
+4
-24
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+13
-23
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
67d536f1
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.124 (2009-11-20)
</h2>
<ul><li>
Clustering: there is now a way to detect which cluster instances are running.
</li><li>
ConvertTraceFile: the SQL statement statistics are better formatted (newline are removed).
</li><li>
The file lock thread is now stopped when the database is closed.
...
...
@@ -556,29 +560,5 @@ Change Log
</li><li>
Fulltext search: there was a memory leak when creating and dropping fulltext indexes in a loop.
</li></ul>
<h2>
Version 1.1.103 (2008-11-07)
</h2>
<ul><li>
Could not order by a formula when the formula was in the group by list
but not in the select list.
</li><li>
Date values that match the daylight saving time end were not allowed in
times zones were the daylight saving time ends at midnight, for years larger than 2037.
Example: timezone Brasilia, date 2042-10-12. This is a problem of Java, however a
workaround is implemented in H2 that solves most problems (except the problems of
java.util.Date itself).
</li><li>
ALTER TABLE used a lot of memory when using multi-version concurrency.
</li><li>
Referential integrity for in-memory databases didn't work in some cases in version 1.1.102.
</li><li>
New column INFORMATION_SCHEMA.COLUMNS.SEQUENCE_NAME to get the name
of the sequence for auto-increment columns.
</li><li>
Aliases for built-in data types (such as MEDIUMBLOB which is an alias for BLOB)
can now be re-mapped to another data type using CREATE DOMAIN. However
main built-in data types (such as INTEGER) can not be re-mapped.
</li><li>
The Japanese translation has been completed by Masahiro Ikemoto.
Thanks a lot!
</li><li>
Improved PostgreSQL compatibility for NEXTVAL and CURRVAL.
</li><li>
Less heap memory is needed when multiple databases are open at the same time: the memory reserve
(used to rollback after out of memory) is now global and no longer allocated for each database separately.
</li><li>
New system property h2.browser to set the browser to use.
</li><li>
To start the browser, java.awt.Desktop.browse is now used if available.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
67d536f1
...
...
@@ -14,7 +14,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
12
3
;
public
static
final
int
BUILD_ID
=
12
4
;
/**
* 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-11-
08
"
;
public
static
final
String
BUILD_DATE
=
"2009-11-
20
"
;
/**
* The build date is updated for each public release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
67d536f1
...
...
@@ -13,6 +13,19 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
74
,
'New version available: 1.2.124 (2009-11-20)'
,
'2009-11-20 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
/>
For
details
,
see
the
<
a
href
=
"http://www.h2database.com/html/changelog.html"
>
change
log
</
a
>
.
<
br
/>
For
future
plans
,
see
the
<
a
href
=
"http://www.h2database.com/html/roadmap.html"
>
roadmap
</
a
>
.
$$
);
INSERT
INTO
ITEM
VALUES
(
73
,
'New version available: 1.2.123 (2009-11-08)'
,
'2009-11-08 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
...
...
@@ -343,29 +356,6 @@ For future plans, see the 'Roadmap' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
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
$$
);
SELECT
'newsfeed-rss.xml'
FILE
,
XMLSTARTDOC
()
||
XMLNODE
(
'rss'
,
XMLATTR
(
'version'
,
'2.0'
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论