Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
9e58c46c
提交
9e58c46c
authored
1月 18, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
5bf28552
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
679 行增加
和
823 行删除
+679
-823
changelog.html
h2/src/docsrc/html/changelog.html
+4
-29
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+224
-275
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+224
-275
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+221
-238
release.txt
h2/src/installer/release.txt
+1
-0
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-2
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
9e58c46c
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.3.175 (2013-01-18)
</h2>
<ul><li>
EXPLAIN was incorrect for queries with "ANY" or "SOME" conditions.
</li><li>
CallableStatement with "out" parameters: running the same statement twice
could result in an exception ("parameter not set").
...
...
@@ -356,34 +360,5 @@ Change Log
There is (limited) support for editing multi-line documents.
</li></ul>
<h2>
Version 1.3.167 (2012-05-23)
</h2>
<ul><li>
H2 Console: when editing a row, an empty varchar column was replaced with a single space.
</li><li>
Lukas Eder has updated the jOOQ documentation.
</li><li>
Some nested joins could not be executed, for example:
select * from (select * from (select * from a) a right join b b) c;
</li><li>
MS SQL Server compatibility: ISNULL is now an alias for IFNULL.
</li><li>
Terrence Huang has completed the translation of the H2 Console tool to Chinese. Thanks a lot!
</li><li>
Server mode: the number of CLOB / BLOB values that were cached on the server
is now the maximum of: 5 times the SERVER_RESULT_SET_FETCH_SIZE (which is 100 by default),
and SysProperties.SERVER_CACHED_OBJECTS.
</li><li>
In the trace file, the query execution time was incorrect in some cases, specially
for the statement SET TRACE_LEVEL_FILE 2.
</li><li>
The feature LOG_SIZE_LIMIT that was introduced in version 1.3.165 did not always work
correctly (specially with regards to multithreading) and has been removed.
The message "Transaction log could not be truncated" is still written to the .trace.db file
if required.
</li><li>
Then reading from a resource using the prefix "classpath:", the ContextClassLoader
is now used if the resource can't be read otherwise.
</li><li>
DatabaseEventListener now calls setProgress whenever a statement starts and ends.
</li><li>
DatabaseEventListener now calls setProgress periodically while a statement is running.
</li><li>
The table INFORMATION_SCHEMA.FUNCTION_ALIASES now includes a column TYPE_NAME.
</li><li>
Issue 378: when using views, the wrong values were bound to a parameter in some cases.
</li><li>
Terrence Huang has translated the error messages to Chinese. Thanks a lot!
</li><li>
TRUNC was added as an alias for TRUNCATE.
</li><li>
Small optimisation for accessing result values by column name.
</li><li>
Fix for bug in Statement.getMoreResults(int)
</li><li>
The SCRIPT statements now supports filtering by schema and table. Thanks a lot to Jacob Qvortrup for providing the patch!
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
9e58c46c
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
9e58c46c
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
9e58c46c
差异被折叠。
点击展开。
h2/src/installer/release.txt
浏览文件 @
9e58c46c
Check dictionary.txt
svn up
./build.sh spellcheck
./build.sh javadocImpl
./build.sh docs
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
9e58c46c
...
...
@@ -17,22 +17,22 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"201
3-10-19
"
;
public
static
final
String
BUILD_DATE
=
"201
4-01-18
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2013-
07-28
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2013-
10-19
"
;
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
17
4
;
public
static
final
int
BUILD_ID
=
17
5
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
17
3
;
public
static
final
int
BUILD_ID_STABLE
=
17
4
;
/**
* If H2 is compiled to be included in a product, this should be set to
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
9e58c46c
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
125
,
'1.3.175'
,
'2014-01-18'
),
(
124
,
'1.3.174'
,
'2013-10-19'
),
(
123
,
'1.3.173'
,
'2013-07-28'
),
(
122
,
'1.3.172'
,
'2013-05-25'
),
...
...
@@ -17,8 +18,6 @@ INSERT INTO VERSION VALUES
(
117
,
'1.3.167'
,
'2012-05-23'
),
(
116
,
'1.3.166'
,
'2012-04-08'
),
(
115
,
'1.3.165'
,
'2012-03-18'
),
(
114
,
'1.3.164'
,
'2012-01-03'
),
(
113
,
'1.3.163'
,
'2011-12-30'
),
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论