Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
be1cdf22
提交
be1cdf22
authored
3月 02, 2015
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
6d54efd1
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
587 行增加
和
870 行删除
+587
-870
changelog.html
h2/src/docsrc/html/changelog.html
+5
-48
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+194
-296
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+194
-296
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+190
-224
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-3
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
be1cdf22
...
@@ -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.186 Beta (2015-03-02)
</h2>
<ul><li>
The Servlet API 3.0.1 is now used, instead of 2.4.
<ul><li>
The Servlet API 3.0.1 is now used, instead of 2.4.
</li><li>
MVStore: old chunks no longer removed in append-only mode.
</li><li>
MVStore: old chunks no longer removed in append-only mode.
</li><li>
MVStore: the cache for page references could grow far too big, resulting in out of memory in some cases.
</li><li>
MVStore: the cache for page references could grow far too big, resulting in out of memory in some cases.
...
@@ -44,7 +48,7 @@ Change Log
...
@@ -44,7 +48,7 @@ Change Log
that have both joins and wildcards, for example:
that have both joins and wildcards, for example:
select * from dual join(select x from dual) on 1=1
select * from dual join(select x from dual) on 1=1
</li><li>
Issue 598: parser fails on timestamp "24:00:00.1234" - prevent the creation of out-of-range time values.
</li><li>
Issue 598: parser fails on timestamp "24:00:00.1234" - prevent the creation of out-of-range time values.
</li><li>
Allow declaring triggers as source code (like functions). Patch by Sylvain C
UAZ
.
</li><li>
Allow declaring triggers as source code (like functions). Patch by Sylvain C
uaz
.
</li><li>
Make the planner use indexes for sorting when doing a GROUP BY where
</li><li>
Make the planner use indexes for sorting when doing a GROUP BY where
all of the GROUP BY columns are not mentioned in the select. Patch by Frederico (zepfred).
all of the GROUP BY columns are not mentioned in the select. Patch by Frederico (zepfred).
</li><li>
PostgreSQL compatibility: generate_series (as an alias for system_range). Patch by litailang.
</li><li>
PostgreSQL compatibility: generate_series (as an alias for system_range). Patch by litailang.
...
@@ -373,52 +377,5 @@ Change Log
...
@@ -373,52 +377,5 @@ Change Log
</li><li>
Fix bug in varargs support in ALIAS's, patch from Nicolas Fortin
</li><li>
Fix bug in varargs support in ALIAS's, patch from Nicolas Fortin
</li></ul>
</li></ul>
<h2>
Version 1.3.175 (2014-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").
</li><li>
Union queries: duplicate rows could be returned if the sub-queries contained "order by".
</li><li>
The GEOMETRY data type now works for user defined functions that return a result set.
</li><li>
PostgreSQL compatibility: the PgServer was not working properly when the setting
database_to_upper was set to false.
</li><li>
JdbcDataSource: the methods setUrl and getUrl where added as aliases for setURL and getURL.
This should solve problems with the HikariCP (Hikari connection pool).
</li><li>
Issue 537: H2 Console: when loading the schema, incorrect JDBC calls where issued, which caused
the exception "Column PRECISION not found".
</li><li>
Improved Geometry processing (issue 535).
</li><li>
The collation can now be set in the database URL, even if there are data tables,
if the collection is the same as the current collation.
</li><li>
Improved Oracle compatibility for CASE WHEN and DECODE.
</li><li>
The statement "drop all objects" did not work if a table depends on a view via a constraint.
</li><li>
Subqueries or views with "order by" an alias expression could not be executed
due to a regression introduced in version 1.3.174.
</li><li>
Issue 73: MySQL compatibility: support REPLACE, patch by Cemo Koc.
</li><li>
The spatial index now works in MVCC mode when using the MVStore storage.
</li><li>
MVStore: concurrency problems have been fixed.
The API has been simplified.
</li><li>
Improve error message when dropping an index that belongs to a constraint,
specify constraint in error message.
</li><li>
Issue 518: java.sql.Connection.commit() freezes after LOB modification with EXCLUSIVE connection
</li><li>
Issue 517: Create or replace view statement has no effect on the others already existing JDBC connection
</li><li>
Support 123L syntax as in Java; example: SELECT (2000000000L*2).
</li><li>
Issue 520: Add support for sequence max value, min value and cycle, patch by Daniel Gredler.
</li><li>
Issue 521: ScriptReader should implement Closeable
</li><li>
Issue 524: RunScript.execute does not close its Statement, patch from Gaul.
</li><li>
Add support for DB2 "WITH UR" clause, patch from litailang
</li><li>
Added support for ON DUPLICATE KEY UPDATE like MySQL with the values() function to update with the value that
was to be inserted. Patch from Jean-Francois Noel.
</li><li>
Issue 522: Treat empty strings like NULL in Oracle compatibility mode, patch by Daniel Gredler.
</li><li>
Issue 527: Oracle compatibility mode: incorrect scale behavior, patch by Daniel Gredler.
</li><li>
Slightly reduce the memory cost of View metadata.
</li><li>
Extend support of "GRANT ALTER ANY SCHEMA TO
<
user
>
" to allow grantee ability to manipulate tables
</li><li>
Issue 532: Javadoc for ErrorCode.ROLES_AND_RIGHT_CANNOT_BE_MIXED looks wrong
</li><li>
Issue 528: Add Oracle-compatible TO_CHAR function, patch by Daniel Gredler.
</li><li>
Issue 534: CREATE ALIAS NOCACHE, Patch by Nicolas Fortin
</li><li>
Fix an issue with storing Unicode surrogate pairs in CLOB columns.
</li><li>
H2 console: add SHIFT+ENTER "run selected" functionality
</li><li>
Fix bug in DB2 syntax "select * from test with ur", patch from litailang
</li><li>
Fix bug in DROP ALL OBJECTS when dealing with inter-schema dependencies.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
be1cdf22
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
be1cdf22
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
be1cdf22
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
be1cdf22
...
@@ -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
=
"2015-0
1-16
"
;
public
static
final
String
BUILD_DATE
=
"2015-0
3-02
"
;
/**
/**
* 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
5
;
public
static
final
int
BUILD_ID
=
18
6
;
/**
/**
* The build id of the last stable release.
* The build id of the last stable release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
be1cdf22
...
@@ -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
(
136
,
'1.4.186'
,
'2015-03-02'
),
(
135
,
'1.4.185'
,
'2015-01-16'
),
(
135
,
'1.4.185'
,
'2015-01-16'
),
(
134
,
'1.4.184'
,
'2014-12-19'
),
(
134
,
'1.4.184'
,
'2014-12-19'
),
(
133
,
'1.4.183'
,
'2014-12-13'
),
(
133
,
'1.4.183'
,
'2014-12-13'
),
...
@@ -18,7 +19,6 @@ INSERT INTO VERSION VALUES
...
@@ -18,7 +19,6 @@ INSERT INTO VERSION VALUES
(
127
,
'1.4.177'
,
'2014-04-12'
),
(
127
,
'1.4.177'
,
'2014-04-12'
),
(
126
,
'1.3.176'
,
'2014-04-05'
),
(
126
,
'1.3.176'
,
'2014-04-05'
),
(
125
,
'1.3.175'
,
'2014-01-18'
),
(
125
,
'1.3.175'
,
'2014-01-18'
),
(
124
,
'1.3.174'
,
'2013-10-19'
),
;
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
be1cdf22
...
@@ -768,8 +768,6 @@ jech ladislav cognitect sergey thompson evdokimov arykov mfulton
...
@@ -768,8 +768,6 @@ jech ladislav cognitect sergey thompson evdokimov arykov mfulton
dimitrijs fedotovs kingdom manley xso latvia ontwikkeling reeve
dimitrijs fedotovs kingdom manley xso latvia ontwikkeling reeve
extendable republic uniquely datasources accidentally recursing respecting
extendable republic uniquely datasources accidentally recursing respecting
young sweep clearer accounting disappeared donor oome ken jorissen nesterov
young sweep clearer accounting disappeared donor oome ken jorissen nesterov
degradation
degradation failures fashion disjunctive mentioned conjunctive misses broke
failures fashion disjunctive mentioned conjunctive misses broke
authenticate orphaned registrations topology planner
authenticate orphaned registrations topology planner
zepfred frederico thimel arnaud
zepfred frederico thimel arnaud
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论