Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e1d2d075
提交
e1d2d075
authored
1月 28, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
c09078a7
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
11 行增加
和
44 行删除
+11
-44
changelog.html
h2/src/docsrc/html/changelog.html
+4
-38
history.html
h2/src/docsrc/html/history.html
+1
-0
source.html
h2/src/docsrc/html/source.html
+1
-1
sourceError.html
h2/src/docsrc/html/sourceError.html
+1
-1
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
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
e1d2d075
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.3.150 Beta (2011-01-28)
</h2>
<ul><li>
CSVREAD / CSVWRITE: instead of setting the options one by one,
all options can be combined into a space separated key-value pairs.
</li><li>
CSVREAD / CSV tool: there is a new option "lineCommentCharacter" to set or disable line comments.
...
...
@@ -844,43 +848,5 @@ when "LOBs in database" is enabled).
</li><li>
Serialized access mode (server-less multi-connection mode): fixed getGeneratedKeys() for sequences.
</li></ul>
<h2>
Version 1.2.127 (2010-01-15)
</h2>
<ul><li>
Serialized access mode (server-less multi-connection mode): sequences did not work as expected
(there were gaps in generated values when using multiple connections).
</li><li>
Page store: new databases can not be opened with older versions.
</li><li>
Page store: adding data to new database is now faster.
</li><li>
File system: getting the file name from a path is now faster. This should
speed up BLOB and CLOB access.
</li><li>
PgServer: incorrect SQL types were returned in result set meta data.
Concurrently opening a database could fail (PG catalog initialization was not synchronized).
Thanks a lot to Sergi Vladykin for providing the patches!
</li><li>
SHOW COLUMNS did not work correctly if there where multiple indexes
on the same columns.
</li><li>
Page store: the wrong write count was written to the database header.
This could cause the server-less multi-connection mode to fail.
</li><li>
Result sets larger than 2 GB threw an exception "Negative seek offset". Fixed.
</li><li>
If the system property h2.check was set to false, an ArrayIndexOutOfBoundsException could occur.
</li><li>
Alter table is now supported even if a table has views defined. (Patch from Kerry Sainsbury).
</li><li>
Fulltext search: exceptions within the fulltext search package had the wrong SQL state.
</li><li>
The Lucene fulltext search ignored transaction rollback. Fixed using a trigger on rollback.
</li><li>
Trigger can now be called on rollback.
</li><li>
The shell script h2.sh ignored command line line arguments.
</li><li>
When running H2 in the Google AppEngine for Java, a AccessControlException could be thrown
when trying to open a read-only database. Fixed.
</li><li>
The user home directory prefix (~) is now only expanded when followed by a slash
or backslash, or standing alone.
</li><li>
Native fulltext search: before inserting or deleting data, FT_INIT() had to be called.
This is no longer required.
</li><li>
The .trace.db file is now only created if required.
</li><li>
Shell tool: improved PostgreSQL compatibility.
</li><li>
Trying to open a database in read-only mode when a .lock.db file exists will now fail
with a nice error message.
</li><li>
H2 Console: data that is too long is now abbreviated as follows: text... (100000 characters).
A large binary is abbreviated as follows: abcdef... (100000 bytes).
</li><li>
Faster data conversion from BIGINT or INT to DECIMAL.
</li><li>
Server-less multi-connection mode: try to delete log files if switching between read/write operations.
</li><li>
CompressLZF: Faster decompress and improved javadocs
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/html/history.html
浏览文件 @
e1d2d075
...
...
@@ -131,6 +131,7 @@ spread the word, and translated this project. Also many thanks to the donors:
</li><li>
Knut Staring, Norway
</li><li>
Theis Borg, Denmark
</li><li>
Joel A. Garringer, USA
</li><li>
Olivier Chafik, France
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
...
...
h2/src/docsrc/html/source.html
浏览文件 @
e1d2d075
...
...
@@ -22,7 +22,7 @@ Initial Developer: H2 Group
}
else
if
(
key
==
'build'
)
{
if
(
value
==
64
)
{
tag
=
'tags/version-1.0.'
+
value
;
}
else
if
(
value
==
146
||
value
==
148
||
value
==
149
)
{
}
else
if
(
value
==
146
(
value
>=
148
&&
value
<=
150
)
)
{
tag
=
'tags/version-1.3.'
+
build
+
'/h2'
;
}
else
if
(
value
>=
120
)
{
tag
=
'tags/version-1.2.'
+
value
+
'/h2'
;
...
...
h2/src/docsrc/html/sourceError.html
浏览文件 @
e1d2d075
...
...
@@ -68,7 +68,7 @@ function go(file, line) {
var
tag
=
'trunk/h2'
;
if
(
build
==
64
)
{
tag
=
'tags/version-1.0.'
+
build
;
}
else
if
(
build
==
146
||
build
==
148
||
build
==
149
)
{
}
else
if
(
build
==
146
||
(
build
>=
148
&&
build
<=
150
)
)
{
tag
=
'tags/version-1.3.'
+
build
+
'/h2'
;
}
else
if
(
build
>=
120
)
{
tag
=
'tags/version-1.2.'
+
build
+
'/h2'
;
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
e1d2d075
...
...
@@ -16,7 +16,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2011-01-
07
"
;
public
static
final
String
BUILD_DATE
=
"2011-01-
28
"
;
/**
* The build date is updated for each public release.
...
...
@@ -26,7 +26,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
1
49
;
public
static
final
int
BUILD_ID
=
1
50
;
/**
* The build id of the last stable release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
e1d2d075
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
100
,
'1.3.150 Beta'
,
'2011-01-28'
),
(
99
,
'1.3.149 Beta'
,
'2011-01-07'
),
(
98
,
'1.3.148 Beta'
,
'2010-12-12'
),
(
97
,
'1.2.147'
,
'2010-11-21'
),
...
...
@@ -23,7 +24,6 @@ INSERT INTO VERSION VALUES
(
86
,
'1.2.136'
,
'2010-05-24'
),
(
85
,
'1.2.135'
,
'2010-05-08'
),
(
84
,
'1.2.134'
,
'2010-04-23'
),
(
83
,
'1.2.133'
,
'2010-04-10'
),
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
e1d2d075
...
...
@@ -668,4 +668,4 @@ requeried requery closable curr outdated market accurate borg theis welford
ooq exceeded eye hannibal stels garringer czech prevention propagate
compromise portion nodded rapping door stealing napping artifacts lore
pondered curious muttered quaint chamber nearly unwrapped flows weary volume
tapping gently dreary wrapping tis moger udt
tapping gently dreary wrapping tis moger udt
chafik
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论