Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0c8ca6e6
提交
0c8ca6e6
authored
10月 17, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
2b712b8c
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
8 行增加
和
63 行删除
+8
-63
changelog.html
h2/src/docsrc/html/changelog.html
+4
-60
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+2
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
0c8ca6e6
...
...
@@ -17,6 +17,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.4.182 Beta (2014-10-17)
</h2>
<ul><li>
MVStore: improved error messages and logging;
improved behavior if there is an error when serializing objects.
</li><li>
OSGi: the MVStore packages are now exported.
...
...
@@ -454,65 +458,5 @@ Change Log
</li><li>
Issue 459: Improve LOB documentation
</li></ul>
<h2>
Version 1.3.171 (2013-03-17)
</h2>
<ul><li>
Security: the TCP server did not correctly restrict access rights of clients in some cases.
This was specially a problem when using the flag "tcpAllowOthers".
</li><li>
H2 Console: the session timeout can now be configured using the system property "h2.consoleTimeout".
</li><li>
Issue 431: Improved compatibility with MySQL: support for
"ENGINE=InnoDB charset=UTF8" when creating a table.
</li><li>
Issue 249: Improved compatibility with MySQL in the MySQL mode:
now the methods DatabaseMetaData methods stores*Case*Identifiers return the same as MySQL
when using the MySQL mode.
</li><li>
Issue 434: H2 Console didn't work in the Chrome browser
due to a wrong viewport argument.
</li><li>
There was a possibility that the .lock.db file was not deleted
when the database was closed, which could slow down opening the database.
</li><li>
The SQL script generated by the "script" command contained
inconsistent newlines on Windows.
</li><li>
When using trace level 4 (SLF4J) in the server mode, a directory "trace.db"
and an empty file was created on the client side. This is no longer made.
</li><li>
Optimize IN(...) queries: there was a bug in version 1.3.170
if the type of the left hand side didn't match the type of the right hand side. Fixed.
</li><li>
Optimize IN(...) queries: there was a bug in version 1.3.170 for comparison of the type
"X IN(NULL, NULL)". Fixed.
</li><li>
Timestamps with timezone that were passed as a string were not always
converted correctly. For example "2012-11-06T23:00:00.000Z" was converted to
"2012-11-06" instead of to "2012-11-07" in the timezone CET.
Thanks a lot to Steve Hruda for reporting the problem!
</li><li>
New table engine "org.h2.mvstore.db.MVTableEngine"
that internally uses the MVStore to persist data.
To try it out, append ";DEFAULT_TABLE_ENGINE=org.h2.mvstore.db.MVTableEngine"
to the database URL.
This is still very experimental, and many features are not supported yet.
The data is stored in a file with the suffix ".mv.db".
</li><li>
New connection setting "DEFAULT_TABLE_ENGINE" to use a specific
table engine if none is set explicitly. This is to simplify testing
the MVStore table engine.
</li><li>
MVStore: encrypted stores are now supported.
Only standardized algorithms are used: PBKDF2, SHA-256, XTS-AES, AES-128.
</li><li>
MVStore: improved API thanks to Simo Tripodi.
</li><li>
MVStore: maps can now be renamed.
</li><li>
MVStore: store the file header also at the end of each chunk,
which results in a further reduced number of write operations.
</li><li>
MVStore: a map implementation that supports concurrent operations.
</li><li>
MVStore: unified exception handling; the version is included in the messages.
</li><li>
MVStore: old data is now retained for 45 seconds by default.
</li><li>
MVStore: compress is now disabled by default, and can be enabled on request.
</li><li>
Support ALTER TABLE ADD ... AFTER. Patch from Andrew Gaul (argaul at gmail.com). Fixes issue 401.
</li><li>
Improved OSGi support. H2 now registers itself as a DataSourceFactory service. Fixes issue 365.
</li><li>
Add a DISK_SPACE_USED system function. Fixes issue 270.
</li><li>
Fix a compile-time ambiguity when compiling with JDK7, thanks to a patch from Lukas Eder.
</li><li>
Supporting dropping an index for Lucene full-text indexes.
</li><li>
Optimized performance for SELECT ... ORDER BY X LIMIT Y OFFSET Z
queries for in-memory databases using partial sort (by Sergi Vladykin).
</li><li>
Experimental off-heap memory storage engine "nioMemFS:" and "nioMemLZF:",
suggestion from Mark Addleman.
</li><li>
Issue 438: JdbcDatabaseMetaData.getSchemas() is no longer supported as of 1.3.169.
</li><li>
MySQL compatibility: support for ALTER TABLE tableName MODIFY [COLUMN] columnName columnDef. Patch from Ville Koskela.
</li><li>
Issue 404: SHOW COLUMNS FROM tableName does not work with ALLOW_LITERALS=NUMBERS.
</li><li>
Throw an explicit error to make it clear we don't support the TRIGGER combination of SELECT and FOR EACH ROW.
</li><li>
Issue 439: Utils.sortTopN does not handle single-element arrays.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
0c8ca6e6
...
...
@@ -16,7 +16,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2014-
08-06
"
;
public
static
final
String
BUILD_DATE
=
"2014-
10-17
"
;
/**
* The build date of the last stable release.
...
...
@@ -26,7 +26,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
18
1
;
public
static
final
int
BUILD_ID
=
18
2
;
/**
* The build id of the last stable release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
0c8ca6e6
...
...
@@ -6,6 +6,8 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
132
,
'1.4.182'
,
'2014-10-17'
),
(
131
,
'1.4.181'
,
'2014-08-06'
),
(
130
,
'1.4.180'
,
'2014-07-13'
),
(
129
,
'1.4.179'
,
'2014-06-23'
),
...
...
@@ -16,7 +18,6 @@ INSERT INTO VERSION VALUES
(
124
,
'1.3.174'
,
'2013-10-19'
),
(
123
,
'1.3.173'
,
'2013-07-28'
),
(
122
,
'1.3.172'
,
'2013-05-25'
),
(
121
,
'1.3.171'
,
'2013-03-17'
),
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论