Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
64037f16
提交
64037f16
authored
5月 21, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
67d8475d
全部展开
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1142 行增加
和
1093 行删除
+1142
-1093
changelog.html
h2/src/docsrc/html/changelog.html
+5
-2
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+368
-362
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+368
-362
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+364
-362
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
BaseIndex.java
h2/src/main/org/h2/index/BaseIndex.java
+1
-1
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+32
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
64037f16
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.1.113 (2009-05-21)
</h2>
<ul><li>
Shell tool: the built-in commands EXIT, HELP, ?, LIST, and so on didn't
work with a semicolon at the end.
</li><li>
JDK 1.5 is now required to build the jar file. However it is still possible to create
...
...
@@ -41,7 +45,7 @@ Change Log
was loaded at the beginning of the test to collect results, now it is loaded at the very end.
Thanks to Fred Toussi from HSQLDB for reporting those problems. However the changed
do not affect the relative performance.
</li><li>
H2 Console: command line settings are no
w
longer stored in the properties file.
</li><li>
H2 Console: command line settings are no longer stored in the properties file.
They are now only used for the current process, except if they are explicitly saved.
</li><li>
Cache: support for a second level soft-references cache.
To enable it, append ;CACHE_TYPE=SOFT_LRU (or SOFT_TQ) to the database URL, or
...
...
@@ -49,7 +53,6 @@ Change Log
Enabling the second level cache reduces performance for
small databases, but speeds up large databases. It makes sense to use it
if the available memory size is unknown. Thanks a lot to Jan Kotek!
</li><li>
</li></ul>
<h2>
Version 1.1.112 (2009-05-01)
</h2>
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
64037f16
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
64037f16
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
64037f16
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
64037f16
...
...
@@ -14,22 +14,22 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
11
2
;
public
static
final
int
BUILD_ID
=
11
3
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
11
1
;
public
static
final
int
BUILD_ID_STABLE
=
11
2
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-05-
0
1"
;
public
static
final
String
BUILD_DATE
=
"2009-05-
2
1"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
4-10
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
5-01
"
;
/**
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
h2/src/main/org/h2/index/BaseIndex.java
浏览文件 @
64037f16
...
...
@@ -184,7 +184,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index {
* @return the cursor
* @throws SQLException
*/
public
Cursor
findNext
(
Session
session
,
SearchRow
first
,
SearchRow
last
)
throws
SQLException
{
public
Cursor
findNext
(
Session
session
,
SearchRow
higherThan
,
SearchRow
last
)
throws
SQLException
{
throw
Message
.
throwInternalError
();
}
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
64037f16
...
...
@@ -13,6 +13,38 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
63
,
'New version available: 1.1.113 (2009-05-21)'
,
'2009-05-21 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
(
You
may
have
to
click
'Refresh'
).
<
br
/>
<
b
>
Changes
and
new
functionality
:
</
b
>
<
ul
><
li
>
This
is
the
last
version
compiled
against
Java
1
.
4
.
</
li
><
li
>
JDK
1
.
5
is
now
required
to
build
the
jar
file
.
</
li
><
li
>
A
second
level
soft
-
references
cache
is
now
supported
.
It
speeds
up
large
databases
,
but
reduces
performance
for
small
databases
.
Thanks
a
lot
to
Jan
Kotek
for
the
patch
!
</
li
><
li
>
MS
SQL
Server
compatibility
:
support
for
linked
tables
with
NVARCHAR
,
NCHAR
,
NCLOB
,
and
LONGNVARCHAR
.
</
li
><
li
>
Android
workaround
for
read
-
only
databases
in
zip
files
.
</
li
><
li
>
Calling
execute
()
or
prepareStatement
()
with
null
as
the
SQL
statement
now
throws
an
exception
.
</
li
><
li
>
H2
Console
:
command
line
settings
are
no
longer
stored
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
When
deleting
or
updating
many
rows
in
a
table
,
the
space
in
the
index
file
was
not
re
-
used
.
</
li
><
li
>
Identifiers
with
a
digit
and
then
a
dollar
sign
didn
't work.
</li><li>Shell tool: the built-in commands didn'
t
work
with
a
semicolon
.
</
li
><
li
>
Benchmark
:
the
number
of
executed
statements
was
incorrect
.
</
li
></
ul
>
For
details
,
see
the
'Change Log'
at
http
:
//
www
.
h2database
.
com
/
html
/
changelog
.
html
<
br
/>
For
future
plans
,
see
the
'Roadmap'
page
at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
INSERT
INTO
ITEM
VALUES
(
62
,
'New version available: 1.1.112 (2009-05-01)'
,
'2009-05-01 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论