Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
29151d1a
提交
29151d1a
authored
10 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
a3432f5e
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
7 行增加
和
32 行删除
+7
-32
changelog.html
h2/src/docsrc/html/changelog.html
+4
-29
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
29151d1a
...
@@ -17,6 +17,10 @@ Change Log
...
@@ -17,6 +17,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.4.183 Beta (2014-12-13)
</h2>
<ul><li>
MVStore: the default auto-commit buffer size is now about twice as big.
<ul><li>
MVStore: the default auto-commit buffer size is now about twice as big.
This should reduce the database file size after inserting a lot of data.
This should reduce the database file size after inserting a lot of data.
</li><li>
The built-in functions "power" and "radians" now always return a double.
</li><li>
The built-in functions "power" and "radians" now always return a double.
...
@@ -482,34 +486,5 @@ Change Log
...
@@ -482,34 +486,5 @@ Change Log
</li><li>
Avoid problems with runtime-compiled ALIAS methods when people have set the JAVA_TOOL_OPTIONS environment variable.
</li><li>
Avoid problems with runtime-compiled ALIAS methods when people have set the JAVA_TOOL_OPTIONS environment variable.
</li></ul>
</li></ul>
<h2>
Version 1.3.172 (2013-05-25)
</h2>
<ul><li>
Referential integrity: when adding a referential integrity constraint failed,
and if creating the constraint automatically created an index, this index was not removed.
</li><li>
The auto-analyze feature now only reads 1000 rows per table instead of 10000.
</li><li>
The optimization for IN(...) queries combined with OR could result
in a strange exception of the type "column x must be included in the group by list".
</li><li>
Issue 454: Use Charset for type-safety.
</li><li>
Queries with both LIMIT and OFFSET could throw an IllegalArgumentException.
</li><li>
MVStore: multiple issues were fixed: 460, 461, 462, 464, 466.
</li><li>
MVStore: larger stores (multiple GB) are now much faster.
</li><li>
When using local temporary tables and not dropping them manually before closing the session,
and then killing the process could result in a database that couldn't be opened (except when using
the recover tool).
</li><li>
Support TRUNC(timestamp) for improved Oracle compatibility.
</li><li>
Add support for CREATE TABLE TEST (ID BIGSERIAL) for PostgreSQL compatibility. Patch from Jesse Long.
</li><li>
Add new collation command SET BINARY_COLLATION UNSIGNED, helps with people testing BINARY columns in MySQL mode.
</li><li>
Issue 453: ABBA race conditions in TABLE LINK connection sharing.
</li><li>
Issue 449: Postgres Serial data type should not automatically be marked as primary key
</li><li>
Issue 406: Support "select h2version()"
</li><li>
Issue 389: When there is a multi-column primary key, H2 does not seem to always pick the right index
</li><li>
Issue 305: Implement SELECT ... FOR FETCH ONLY
</li><li>
Issue 274: Sybase/MSSQLServer compatibility - Add GETDATE and CHARINDEX system functions
</li><li>
Issue 274: Sybase/MSSQLServer compatibility - swap parameters of CONVERT function.
</li><li>
Issue 274: Sybase/MSSQLServer compatibility - support index clause e.g. "select * from test (index table1_index)"
</li><li>
Fix bug in Optimizing SELECT * FROM A WHERE X=1 OR X=2 OR X=3 into SELECT * FROM A WHERE X IN (1,2,3)
</li><li>
Issue 442: Groovy patch for SourceCompiler (function ALIAS)
</li><li>
Issue 459: Improve LOB documentation
</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/main/org/h2/engine/Constants.java
浏览文件 @
29151d1a
...
@@ -16,7 +16,7 @@ public class Constants {
...
@@ -16,7 +16,7 @@ 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
=
"2014-1
0-17
"
;
public
static
final
String
BUILD_DATE
=
"2014-1
2-13
"
;
/**
/**
* The build date of the last stable release.
* The build date of the last stable release.
...
@@ -26,7 +26,7 @@ public class Constants {
...
@@ -26,7 +26,7 @@ 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
=
18
2
;
public
static
final
int
BUILD_ID
=
18
3
;
/**
/**
* The build id of the last stable release.
* The build id of the last stable release.
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
29151d1a
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
INSERT
INTO
VERSION
VALUES
(
133
,
'1.4.183'
,
'2014-12-13'
),
(
132
,
'1.4.182'
,
'2014-10-17'
),
(
132
,
'1.4.182'
,
'2014-10-17'
),
(
131
,
'1.4.181'
,
'2014-08-06'
),
(
131
,
'1.4.181'
,
'2014-08-06'
),
(
130
,
'1.4.180'
,
'2014-07-13'
),
(
130
,
'1.4.180'
,
'2014-07-13'
),
...
@@ -17,7 +18,6 @@ INSERT INTO VERSION VALUES
...
@@ -17,7 +18,6 @@ INSERT INTO VERSION VALUES
(
125
,
'1.3.175'
,
'2014-01-18'
),
(
125
,
'1.3.175'
,
'2014-01-18'
),
(
124
,
'1.3.174'
,
'2013-10-19'
),
(
124
,
'1.3.174'
,
'2013-10-19'
),
(
123
,
'1.3.173'
,
'2013-07-28'
),
(
123
,
'1.3.173'
,
'2013-07-28'
),
(
122
,
'1.3.172'
,
'2013-05-25'
),
;
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论