Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
c0167781
提交
c0167781
authored
6月 27, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
c8872a9e
全部展开
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1159 行增加
和
1291 行删除
+1159
-1291
changelog.html
h2/src/docsrc/html/changelog.html
+4
-32
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+385
-430
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+385
-430
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+380
-395
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
c0167781
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.138 (2010-06-27)
</h2>
<ul><li>
Referential integrity: it was not allowed to delete a row with NULL in the parent table,
if there was a row with NULL in the child table.
</li><li>
Experimental feature to support case sensitive catalog names
...
...
@@ -683,37 +687,5 @@ Change Log
</li><li>
SimpleResultSet.newInstance(SimpleRowSource rs) did not work.
</li></ul>
<h2>
Version 1.1.116 (2009-07-18)
</h2>
<ul><li>
Server-less multi-connection mode: more bugs are fixed.
</li><li>
The built-in help (INFORMATION_SCHEMA.HELP) is smaller, shrinking the jar file size a bit.
</li><li>
H2 Console: column of tables of non-default schemas are now also listed,
except for schemas starting with 'INFO'.
</li><li>
ALTER TABLE: removing an auto-increment or identity column didn't remove the sequence.
</li><li>
Creating indexes is now a bit faster.
</li><li>
PG Server: new system property h2.pgClientEncoding to explicitly set the encoding
for clients that don't send the encoding (the default encoding is UTF-8).
Thanks a lot to Sergi Vladykin for the patch!
</li><li>
PG Server: improved compatibility by using the type ids of the PostgreSQL driver.
Thanks a lot to Sergi Vladykin for the patch!
</li><li>
H2 Console: Oracle system tables are no longer listed, improving performance.
</li><li>
Result sets are now read-only except if the statement or prepared statement was created
with the concurrency ResultSet.CONCUR_UPDATABLE. This change is required because the old behavior
(all result set are updatable) violated the JDBC spec. For backward compatibility, use the
system property h2.defaultResultSetConcurrency.
</li><li>
New system property h2.defaultResultSetConcurrency to change the default result set concurrency.
</li><li>
JDBC: using an invalid result set type or concurrency now throws an exception.
</li><li>
If a pooled connection was not closed but garbage collected, a NullPointerException could occur.
</li><li>
Fulltext search: a NullPointerException was thrown when updating a value that
was NULL previously.
</li><li>
The Recover tool did not work with .data.db files of the wrong size.
</li><li>
Triggers: if there was an exception when initializing a trigger, this exception could be hidden,
and in some cases (specially when using the Lucene fulltext index mechanism) a NullPointerException was
thrown later on. Now the exception that occurred on init is thrown when changing data.
</li><li>
The soft-references cache (CACHE_TYPE=SOFT_LRU) could throw a NullPointerException.
</li><li>
To enable the new page store mechanism, append ;PAGE_STORE=TRUE to the database URL.
or set the system property h2.pageStore to true.
This mechanism is still experimental, and the file format will change, but it is quite stable now.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
c0167781
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
c0167781
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
c0167781
This source diff could not be displayed because it is too large. You can
view the blob
instead.
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
c0167781
...
...
@@ -14,12 +14,12 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
13
7
;
public
static
final
int
BUILD_ID
=
13
8
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
13
6
;
public
static
final
int
BUILD_ID_STABLE
=
13
7
;
/**
* If H2 is compiled to be included in a product, this should be set to
...
...
@@ -32,12 +32,12 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2010-06-
06
"
;
public
static
final
String
BUILD_DATE
=
"2010-06-
27
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
5-24
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
6-06
"
;
/**
* The TCP protocol version number. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
c0167781
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
88
,
'1.2.138'
,
'2010-06-27'
),
(
87
,
'1.2.137'
,
'2010-06-06'
),
(
86
,
'1.2.136'
,
'2010-05-24'
),
(
85
,
'1.2.135'
,
'2010-05-08'
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论