Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
25d637f2
提交
25d637f2
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
d74ee98c
无相关合并请求
全部展开
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1040 行增加
和
1103 行删除
+1040
-1103
changelog.html
h2/src/docsrc/html/changelog.html
+5
-16
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+341
-353
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+341
-353
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+336
-340
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+13
-37
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
25d637f2
...
@@ -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.2.132 (2010-03-21)
</h2>
<ul><li>
The implementation of a Java to C (source code level) converter has been started.
<ul><li>
The implementation of a Java to C (source code level) converter has been started.
The plan is: it should be possible to convert H2 (or a part of it) to C so that the database
The plan is: it should be possible to convert H2 (or a part of it) to C so that the database
can be run without a JVM. This will be a long term project (it may take a year or so).
can be run without a JVM. This will be a long term project (it may take a year or so).
...
@@ -595,20 +599,5 @@ Change Log
...
@@ -595,20 +599,5 @@ Change Log
</li><li>
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>
<ul><li>
In-memory databases can now run inside the Google App Engine.
</li><li>
Queries that are ordered by an indexed column returned no rows in certain cases
(if all rows were deleted from the table previously, and there is a low number of rows
in the table, and when not using other conditions, and when using the default b tree index).
</li><li>
The wrong exception was thrown when using unquoted text for
the SQL statements COMMENT, ALTER USER, and SET PASSWORD.
</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. See also
http://code.google.com/p/h2database/issues/detail?id=61
</li><li>
The Shell tool no longer truncates results with only one column, and displays
a message if data was truncated.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
This diff is collapsed.
Click to expand it.
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
25d637f2
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
25d637f2
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
25d637f2
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
25d637f2
...
@@ -14,12 +14,12 @@ public class Constants {
...
@@ -14,12 +14,12 @@ 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
=
13
1
;
public
static
final
int
BUILD_ID
=
13
2
;
/**
/**
* The build id of the last stable release.
* The build id of the last stable release.
*/
*/
public
static
final
int
BUILD_ID_STABLE
=
1
27
;
public
static
final
int
BUILD_ID_STABLE
=
1
31
;
/**
/**
* If H2 is compiled to be included in a product, this should be set to
* If H2 is compiled to be included in a product, this should be set to
...
@@ -32,12 +32,12 @@ public class Constants {
...
@@ -32,12 +32,12 @@ public class Constants {
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE
=
"2010-03-
05
"
;
public
static
final
String
BUILD_DATE
=
"2010-03-
21
"
;
/**
/**
* 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
=
"2010-0
1-1
5"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
3-0
5"
;
/**
/**
* The TCP protocol version number. This protocol is used by the TCP
* The TCP protocol version number. This protocol is used by the TCP
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
25d637f2
...
@@ -13,6 +13,19 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
...
@@ -13,6 +13,19 @@ 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
(
82
,
'New version available: 1.2.132 (2010-03-21)'
,
'2010-03-21 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
(
81
,
INSERT
INTO
ITEM
VALUES
(
81
,
'New version available: 1.2.131 (2010-03-05)'
,
'2010-03-05 12:00:00'
,
'New version available: 1.2.131 (2010-03-05)'
,
'2010-03-05 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
$$
A
new
version
of
H2
is
available
for
...
@@ -196,43 +209,6 @@ For future plans, see the 'Roadmap' page at
...
@@ -196,43 +209,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(69,
'
New
version
available
:
1
.
1
.
119
(
2009
-
09
-
26
)
', '
2009
-
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>The new page store mechanism is now alpha-level quality.
</li><li>New committer: Christian Peter. He works for Docware.
</li><li>The context class loader is used for user defined classes.
</li><li>Non-unique in-memory hash indexes are now supported.
</li><li>Improved performance for joins if indexes are missing.
</li><li>New system property h2.defaultMaxLengthInplaceLob.
</li><li>New system property h2.nullConcatIsNull.
</li><li>The Recover tool now also processes the log files.
</li><li>New sample application that shows how to pass data to a trigger.
</li><li>The cache algorithm TQ is disabled.
</li><li>SQL statements in the exception are no longer always included.
</li></ul>
<b>Bugfixes:</b>
<ul><li>ChangeFileEncryption did not work with Lob subdirectories.
</li><li>SELECT COUNT(*) FROM SYSTEM_RANGE(...) returned the wrong result.
</li><li>More bugs in the server-less multi-connection mode have been fixed.
</li><li>Updating many rows with LOB could throw an exception.
</li><li>The native fulltext index could leak memory.
</li><li>Statement.getConnection() didn'
t
work
if
the
connection
was
closed
.
</
li
><
li
>
Issue
121
:
JaQu
:
new
simple
update
and
merge
methods
.
</
li
><
li
>
Issue
120
:
JaQu
didn
't close result sets.
</li><li>Issue 119: JaQu creates wrong WHERE conditions on some inputs.
</li><li>Temporary local tables did not always work after reconnect if AUTO_SERVER=TRUE
</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
'),
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论