Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a42ad6d6
提交
a42ad6d6
authored
7月 25, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
e565a9e3
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1197 行增加
和
1352 行删除
+1197
-1352
changelog.html
h2/src/docsrc/html/changelog.html
+4
-33
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+397
-451
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+397
-451
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+394
-412
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
a42ad6d6
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.140 (2010-07-25)
</h2>
<ul><li>
The default MAX_LOG_SIZE is now 16 MB instead of 2 MB. Some uses cases are 3 times faster now.
</li><li>
Improved cache memory usage calculation.
</li><li>
Only resources that are actually used are loaded in memory.
...
...
@@ -729,38 +733,5 @@ Change Log
</li><li>
The optimizer does a better job for joins if indexes are missing.
</li></ul>
<h2>
Version 1.1.118 (2009-09-04)
</h2>
<ul><li>
SHOW COLUMNS only listed indexed columns.
</li><li>
When calling SHUTDOWN IMMEDIATELY in the server mode, the .trace.db file was not closed.
</li><li>
DatabaseMetaData.getPrimaryKeys: the wrong constraint name was reported
if there was another constraint on the same table and columns.
</li><li>
AUTO_INCREMENT now works in the same way in ALTER TABLE ALTER COLUMN
as in CREATE TABLE (it does not create a primary key).
</li><li>
Native fulltext search: before searching, FT_INIT() had to be called.
This is no longer required.
</li><li>
Better support GaeVFS (Google App Engine Virtual File System).
</li><li>
JaQu: the plan is to support natural (pure Java / Scala) conditions such as
(id == 1
&&
name.equals("Test")). A proof of concept decompiler is now included (it doesn't work yet).
</li><li>
Various bugfixes and improvements in the page store mechanism (still experimental).
</li><li>
PreparedStatement.setObject now converts a java.lang.Character to a string.
</li><li>
H2 Console: PierPaolo Ucchino has completed the Italian translation. Thanks a lot!
</li><li>
Various tools now use Java 5 var-args, such as main the methods and SimpleResultSet.addRow.
</li><li>
H2 Console: indexes of tables of non-default schemas are now also listed.
</li><li>
Issue 111: Multi-version concurrency / duplicate primary key after rollback.
</li><li>
Issue 110: Multi-version concurrency / wrong exception is thrown.
</li><li>
Parser: sequenceName.NEXTVAL and CURRVAL did not respect the schema search path.
</li><li>
Issue 101: The following sequence could throw the exception "Row not found when trying to delete":
start a transaction, insert many rows, delete many rows, rollback. The number of rows depends
on the cache size.
</li><li>
The stack trace of very common exceptions is no longer written to the .trace.db file by default.
</li><li>
An optimization for OR is implemented, but disabled by default.
Expressions of the type X=1 OR X=2 are converted to X IN(1, 2).
To enable, set the system property h2.optimizeInList to true before loading the H2 JDBC driver.
</li><li>
An optimization for IN(..) and IN(SELECT...) is implemented, but disabled by default.
To enable, set the system property h2.optimizeInList to true before loading the H2 JDBC driver.
If enabled, this overrides h2.optimizeIn and h2.optimizeInJoin. Unlike now, this optimization
will also speed up updates and deletes.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
a42ad6d6
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
a42ad6d6
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
a42ad6d6
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
浏览文件 @
a42ad6d6
...
...
@@ -14,12 +14,12 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
1
39
;
public
static
final
int
BUILD_ID
=
1
40
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
13
8
;
public
static
final
int
BUILD_ID_STABLE
=
13
9
;
/**
* 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-07-
10
"
;
public
static
final
String
BUILD_DATE
=
"2010-07-
25
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
6-27
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
7-10
"
;
/**
* The TCP protocol version number. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
a42ad6d6
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
90
,
'1.2.140'
,
'2010-07-25'
),
(
89
,
'1.2.139'
,
'2010-07-10'
),
(
88
,
'1.2.138'
,
'2010-06-27'
),
(
87
,
'1.2.137'
,
'2010-06-06'
),
...
...
@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
(
78
,
'1.2.128'
,
'2010-01-30'
),
(
77
,
'1.2.127'
,
'2010-01-15'
),
(
76
,
'1.2.126'
,
'2009-12-18'
),
(
75
,
'1.2.125'
,
'2009-12-06'
),
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论