Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
aef22ba5
提交
aef22ba5
authored
10 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
02f2994e
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
816 行增加
和
862 行删除
+816
-862
changelog.html
h2/src/docsrc/html/changelog.html
+1
-54
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+271
-268
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+271
-268
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+269
-268
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
NetUtils.java
h2/src/main/org/h2/util/NetUtils.java
+1
-1
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
aef22ba5
...
@@ -20,7 +20,7 @@ Change Log
...
@@ -20,7 +20,7 @@ Change Log
<ul><li>
-
<ul><li>
-
</li></ul>
</li></ul>
<h2>
Next Version (unreleased
)
</h2>
<h2>
Version 1.4.184 Beta (2014-12-19
)
</h2>
<ul><li>
In version 1.3.183, indexes were not used if the table contains
<ul><li>
In version 1.3.183, indexes were not used if the table contains
columns with a default value generated by a sequence.
columns with a default value generated by a sequence.
This includes tables with identity and auto-increment columns.
This includes tables with identity and auto-increment columns.
...
@@ -450,58 +450,5 @@ Change Log
...
@@ -450,58 +450,5 @@ Change Log
</li><li>
Adding support for "GRANT ALTER ANY SCHEMA TO
<
user
>
", patch by John Yates
</li><li>
Adding support for "GRANT ALTER ANY SCHEMA TO
<
user
>
", patch by John Yates
</li></ul>
</li></ul>
<h2>
Version 1.3.173 (2013-07-28)
</h2>
<ul><li>
Support empty statements that just contains a comment.
</li><li>
Server mode: if there was an error while reading from a LOB, the session was closed in some cases.
</li><li>
Issue 463: Driver name and version are now the same in OsgiDataSourceFactory and JdbcDatabaseMetaData.
</li><li>
JaQu: The data type VARCHAR is now (again) used for Strings
(no longer TEXT, except when explicitly set).
</li><li>
For in-memory databases, creating an index on a CLOB or BLOB column
is no longer supported. This is to simplify the MVTableEngine.
</li><li>
New column "information_schema.tables.row_count_estimate".
</li><li>
Issue 468: trunc(timestamp) could return the wrong value (+12 hours), and trunc(number) throw a NullPointerException.
</li><li>
The expression trunc(number) threw a NullPointerException.
</li><li>
Fixed a deadlock when updating LOB's concurrently. See TestLob.testDeadlock2().
</li><li>
Fixed a deadlock related to very large temporary result sets.
</li><li>
Add "-list" command line option to Shell tool so that result-list-mode can be triggered when reading from a file.
</li><li>
Issue 474: H2 MySQL Compatibility code fails to ignore "COMMENT" in CREATE TABLE, patch from Aaron Azeckoski.
</li><li>
Issue 476: Broken link in jaqu.html
</li><li>
Fix potential UTF8 encoding issue in org.h2.store.FileStore, reported by Juerg Spiess.
</li><li>
Improve error message when check constraint is broken, test case from Gili (cowwoc).
</li><li>
Improve error message when we have a unique constraint violation, displays the offending key in the error message.
</li><li>
Issue 478: Support for "SHOW TRANSACTION ISOLATION LEVEL", patch from Andrew Franklin.
</li><li>
Issue 475: PgServer: add support for CancelRequest, patch from Andrew Franklin.
</li><li>
Issue 473: PgServer missing -key option, patch from Andrew Franklin.
</li><li>
Issue 471: CREATE VIEW does not check user rights, patch from Andrew Franklin.
</li><li>
Issue 477: PgServer binary transmission of query params is unimplemented, patch from Andrew Franklin.
</li><li>
Issue 479: Support for SUBSTRING without a FROM condition, patch from Andrew Franklin.
</li><li>
Issue 472: PgServer does not work with any recent Postgres JDBC driver, patch from Andrew Franklin.
</li><li>
Add syntax for passing additional parameters into custom TableEngine implementations.
</li><li>
Issue 480: Bugfix post issue 475, 477, patch from Andrew Franklin.
</li><li>
Issue 481: Further extensions to PgServer to support better support PG JDBC, patch from Andrew Franklin.
</li><li>
Add support for spatial datatype GEOMETRY.
</li><li>
Add support for in-memory spatial index.
</li><li>
change the PageStore#changeCount field from an int to a long,
to cope with databases with very high transaction rates.
</li><li>
Fix a NullPointerException when attempting to add foreign key reference to a view.
</li><li>
Add sufficient ClientInfo support to our javax.sql.Connection implementation to make WebSphere happy.
</li><li>
Issue 482: class LobStorageBackend$LobInputStream does not override the method InputStream.available().
</li><li>
Fix corruption resulting from a mix of the "WRITE_DELAY=0" option
and "SELECT DISTINCT" queries that don't fit in memory.
</li><li>
Fix the combination of updating a table which contains an LOB,
and reading from the LOB at the same time.
Previously it would throw an exception, now it works.
</li><li>
Issue 484: In the H2 Console tool, all schemas starting with "INFO" where hidden.
Now they are hidden only if the database is not H2. Patch from "mgcodeact"/"cumer d"
</li><li>
MySQL compatibility, support the "AUTO_INCREMENT=3" part of the CREATE TABLE statement.
</li><li>
Issue 486: MySQL compatibility, support the "DEFAULT CHARSET" part of the CREATE TABLE statement.
</li><li>
Issue 487: support the MySQL "SET foreign_key_checks = 0" command
</li><li>
Issue 490: support MySQL "USING BTREE" index declaration
</li><li>
Issue 485: Database get corrupted when column is renamed for which check constraint was defined inside create table statement.
</li><li>
Issue 499: support MySQL "UNIQUE KEY (ID) USING BTREE" constraint syntax
</li><li>
Issue 501: "CREATE TABLE .. WITH" not serialized, patch from nico.devel
</li><li>
Avoid problems with runtime-compiled ALIAS methods when people have set the JAVA_TOOL_OPTIONS environment variable.
</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/docsrc/text/_docs_en.utf8.txt
浏览文件 @
aef22ba5
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
aef22ba5
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
aef22ba5
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
aef22ba5
...
@@ -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-12-1
3
"
;
public
static
final
String
BUILD_DATE
=
"2014-12-1
9
"
;
/**
/**
* 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
3
;
public
static
final
int
BUILD_ID
=
18
4
;
/**
/**
* 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/main/org/h2/util/NetUtils.java
浏览文件 @
aef22ba5
...
@@ -279,7 +279,7 @@ public class NetUtils {
...
@@ -279,7 +279,7 @@ public class NetUtils {
/**
/**
* Get the host name of a local address, if available.
* Get the host name of a local address, if available.
*
*
* @param localAddress the local address
* @param localAddress the local address
* @return the host name, or another text if not available
* @return the host name, or another text if not available
*/
*/
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
aef22ba5
...
@@ -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
(
134
,
'1.4.184'
,
'2014-12-19'
),
(
133
,
'1.4.183'
,
'2014-12-13'
),
(
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'
),
...
@@ -17,7 +18,6 @@ INSERT INTO VERSION VALUES
...
@@ -17,7 +18,6 @@ INSERT INTO VERSION VALUES
(
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'
),
(
124
,
'1.3.174'
,
'2013-10-19'
),
(
123
,
'1.3.173'
,
'2013-07-28'
),
;
;
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论