Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
eb6754a8
提交
eb6754a8
authored
11 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
f7aac69e
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
580 行增加
和
777 行删除
+580
-777
changelog.html
h2/src/docsrc/html/changelog.html
+4
-46
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+191
-257
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+191
-257
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+188
-210
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-2
TestMVTableEngine.java
h2/src/test/org/h2/test/store/TestMVTableEngine.java
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
eb6754a8
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</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.
...
...
@@ -303,51 +307,5 @@ Change Log
</li><li>
PostgreSQL compatibility: LOG(x) is base 10 in the PostgreSQL mode.
</li></ul>
<h2>
Version 1.3.164 (2012-02-03)
</h2>
<ul><li>
New built-in function ARRAY_CONTAINS.
</li><li>
Some DatabaseMetaData methods didn't work when using ALLOW_LITERALS NONE.
</li><li>
Trying to convert a VARCHAR to UUID will now fail if the text contains
a character that is not a hex digit, '-', or not a whitespace.
</li><li>
TriggerAdapter: in "before" triggers, values can be changed using the ResultSet.updateX methods.
</li><li>
Creating a table with column data type NULL now works (even if not very useful).
</li><li>
ALTER TABLE ALTER COLUMN no longer copies the data for widening conversions
(for example if only the precision was increased) unless necessary.
</li><li>
Multi-threaded kernel: concurrently running an online backup
and updating the database resulted in a broken (transactionally incorrect)
backup file in some cases.
</li><li>
The script created by SCRIPT DROP did not always work if multiple views
existed that depend on each other.
</li><li>
MathUtils.getSecureRandom could log a warning to System.err in case
the /dev/random is very slow, and the System.getProperties().toString()
returned a string larger than 64 KB.
</li><li>
The database file locking mechanism "FS" (;FILE_LOCK=FS)
did not work on Linux since version 1.3.161.
</li><li>
Sequences: the functions NEXTVAL and CURRVAL did not work as expected
when using quoted, mixed case sequence names.
</li><li>
The constructor for Csv objects is now public, and Csv.getInstance() is now deprecated.
</li><li>
SimpleResultSet: updating a result set is now supported.
</li><li>
Database URL: extra semicolons are not supported.
</li></ul>
<h2>
Version 1.3.163 (2011-12-30)
</h2>
<ul><li>
On out of disk space, the database could get corrupt sometimes,
if later write operations succeeded. The same problem happened on other
kinds of I/O exceptions (where one or some of the writes fail, but subsequent writes
succeed). Now the file is closed on the first unsuccessful
write operation, so that later requests fail consistently.
</li><li>
DatabaseEventListener.diskSpaceIsLow() is no longer supported because
it can't be guaranteed that it always works correctly.
</li><li>
XMLTEXT now supports an optional parameter to escape newlines.
</li><li>
XMLNODE now support an optional parameter to disable indentation.
</li><li>
Csv.write now formats date, time, and timestamp values using java.sql.Date / Time / Timestamp.toString().
Previously, ResultSet.getString() was used, which didn't work well for Oracle.
</li><li>
The shell script
<code>
h2.sh
</code>
can now be run from within a different directory.
Thanks a lot to Daniel Serodio for the patch!
</li><li>
The page size of a persistent database can now be queries using:
select * from information_schema.settings where name = 'info.PAGE_SIZE'
</li><li>
In the server mode, BLOB and CLOB objects are no longer closed when the result set is closed
(as required by the JDBC spec).
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
This diff is collapsed.
Click to expand it.
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
eb6754a8
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
eb6754a8
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
eb6754a8
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
eb6754a8
...
...
@@ -17,22 +17,22 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2013-0
5-25
"
;
public
static
final
String
BUILD_DATE
=
"2013-0
7-28
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2013-0
3-17
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2013-0
5-25
"
;
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
17
2
;
public
static
final
int
BUILD_ID
=
17
3
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
17
1
;
public
static
final
int
BUILD_ID_STABLE
=
17
2
;
/**
* If H2 is compiled to be included in a product, this should be set to
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
eb6754a8
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
123
,
'1.3.173'
,
'2013-07-28'
),
(
122
,
'1.3.172'
,
'2013-05-25'
),
(
121
,
'1.3.171'
,
'2013-03-17'
),
(
120
,
'1.3.170'
,
'2012-11-30'
),
...
...
@@ -19,8 +20,6 @@ INSERT INTO VERSION VALUES
(
113
,
'1.3.163'
,
'2011-12-30'
),
(
112
,
'1.3.162'
,
'2011-11-26'
),
(
111
,
'1.3.161'
,
'2011-10-28'
),
(
110
,
'1.3.160'
,
'2011-09-11'
),
(
109
,
'1.3.159'
,
'2011-08-13'
),
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/store/TestMVTableEngine.java
浏览文件 @
eb6754a8
...
...
@@ -72,7 +72,7 @@ public class TestMVTableEngine extends TestBase {
Connection
conn
;
Statement
stat
;
long
maxSize
=
0
;
// TODO does not shrink for 45 seconds;
// TODO does not shrink for 45 seconds;
// need an option to configure that
for
(
int
i
=
0
;
i
<
20
;
i
++)
{
conn
=
getConnection
(
dbName
);
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论