Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e7098135
提交
e7098135
authored
9月 18, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
1ce2de09
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
12 行增加
和
43 行删除
+12
-43
changelog.html
h2/src/docsrc/html/changelog.html
+4
-35
Prepared.java
h2/src/main/org/h2/command/Prepared.java
+3
-3
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
浏览文件 @
e7098135
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.143 (2010-09-18)
</h2>
<ul><li>
If the user name and password are not set or empty, then the password is not hashed.
To disable this behavior, set the system property h2.emptyPassword to false.
TCP server: the default user name for the management database is now an empty string.
...
...
@@ -793,40 +797,5 @@ Change Log
</li><li>
Allow writing to linked tables in readonly databases.
</li></ul>
<h2>
Version 1.1.119 (2009-09-26)
</h2>
<ul><li>
SQL statements in the exception message are no longer included if they contain '--hide--'.
</li><li>
Temporary local tables did not always work after reconnect if AUTO_SERVER=TRUE
</li><li>
New system property h2.defaultMaxLengthInplaceLob to change the default maximum size
of an in-place LOB object.
</li><li>
New system property h2.nullConcatIsNull to change the default null concatenation behavior.
The default will be enabled in version 1.2.
</li><li>
The cache algorithm TQ is disabled in this version, because it is unstable, and
because the current implementation does not have any measurable advantages over the default.
</li><li>
New committer: Christian Peter. He works for
<a
href=
"http://www.docware.com"
>
Docware
</a>
and
helped a lot finding and fixing bugs, and generally improving the database. He is now a committer.
</li><li>
ChangeFileEncryption did not work with Lob subdirectories. Fixed.
</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>
The new page store mechanism is now alpha-level quality. The next release
will most likely be "1.2.120 beta" where this mode is enabled by default. To use
it right now, append ;PAGE_STORE=TRUE to the database URL. The file format
of this mode will probably not change any more.
</li><li>
SELECT COUNT(*) FROM SYSTEM_RANGE(...) returned the wrong result. Fixed.
</li><li>
The Recover tool now also processes the log files, however applying those changes
is still a manual process.
</li><li>
New sample application that shows how to pass data to a trigger.
</li><li>
More bugs in the server-less multi-connection mode have been fixed:
On Windows, two processes could write to the same database at the same time.
</li><li>
When loading triggers or other client classes
(static functions, database event listener, user aggregate functions, other JDBC drivers),
the database now uses the context class loader if the class could not be found using Class.forName().
</li><li>
Updating many rows with the same CLOB or BLOB values could result in FileNotFoundException.
</li><li>
Statement.getConnection() threw an exception if the connection was already closed.
</li><li>
The native fulltext index kept a reference to a database after the database was closed.
</li><li>
Non-unique in-memory hash indexes are now supported. Thanks a lot to Sergi Vladykin for the patch!
</li><li>
The optimizer does a better job for joins if indexes are missing.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/main/org/h2/command/Prepared.java
浏览文件 @
e7098135
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
e7098135
...
...
@@ -14,12 +14,12 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
14
2
;
public
static
final
int
BUILD_ID
=
14
3
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
14
1
;
public
static
final
int
BUILD_ID_STABLE
=
14
2
;
/**
* 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-0
8-31
"
;
public
static
final
String
BUILD_DATE
=
"2010-0
9-18
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2010-08-
22
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2010-08-
31
"
;
/**
* The TCP protocol version number 6.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
e7098135
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
93
,
'1.2.143'
,
'2010-09-18'
),
(
92
,
'1.2.142'
,
'2010-08-31'
),
(
91
,
'1.2.141'
,
'2010-08-22'
),
(
90
,
'1.2.140'
,
'2010-07-25'
),
...
...
@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
(
81
,
'1.2.131'
,
'2010-03-05'
),
(
80
,
'1.2.130'
,
'2010-02-26'
),
(
79
,
'1.2.129'
,
'2010-02-19'
),
(
78
,
'1.2.128'
,
'2010-01-30'
),
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论