Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
65c90c51
提交
65c90c51
authored
12月 19, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
b4f9d23c
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
44 行删除
+39
-44
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+34
-44
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+1
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
65c90c51
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.1.105 (2008-12-19)
</h2>
<ul><li>
The setting STORAGE=TEXT is no longer supported.
</li><li>
Deleting a database using the tool DeleteDbFiles deleted LOB files
of other databases in the same directory.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
65c90c51
...
...
@@ -13,6 +13,40 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
55
,
'New version available: 1.1.105 (beta; 2008-12-19)'
,
'2008-12-19 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
>
New
meta
data
column
TABLES
.
LAST_MODIFICATION
.
</
li
><
li
>
The
setting
STORAGE
=
TEXT
is
no
longer
supported
.
</
li
><
li
>
Natural
join
:
the
joined
columns
are
not
repeated
any
more
.
</
li
><
li
>
MySQL
compatibility
:
support
for
:
=
assignment
.
</
li
><
li
>
INSERT
INTO
TEST
(
SELECT
*
FROM
TEST
)
is
now
supported
.
</
li
><
li
>
H2
Console
:
Columns
are
now
listed
for
up
to
500
tables
.
</
li
><
li
>
H2
Console
:
support
for
the
'command'
key
.
</
li
><
li
>
JaQu
:
the
maximum
length
of
a
column
can
now
be
defined
.
</
li
><
li
>
The
fulltext
search
documentation
has
been
improved
.
</
li
><
li
>
R
&
\
#
305
;
dvan
A
&
\
#
287
;
ar
has
completed
the
Turkish
translation
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
The
tool
DeleteDbFiles
could
deleted
LOB
files
of
other
databases
.
</
li
><
li
>
When
used
in
a
subquery
,
LIKE
and
IN
(..)
did
not
work
correctly
.
</
li
><
li
>
ARRAY_GET
returned
the
wrong
data
type
.
</
li
><
li
>
User
defined
aggregate
functions
:
the
method
getType
was
incorrect
.
</
li
><
li
>
User
defined
aggregate
functions
did
not
work
sometimes
.
</
li
><
li
>
Each
session
threw
an
invisible
exception
when
garbage
collected
.
</
li
><
li
>
Foreign
key
constraints
that
refer
to
a
quoted
column
did
not
work
.
</
li
><
li
>
Shell
:
line
comments
didn
't work correctly.
</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(54,
'
New
version
available
:
1
.
1
.
104
(
beta
;
2008
-
11
-
28
)
', '
2008
-
11
-
28
12
:
00
:
00
',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
...
...
@@ -414,50 +448,6 @@ For future plans, see the 'Roadmap' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT
INTO
ITEM
VALUES
(
42
,
'New version available: 1.0.72 (2008-05-10)'
,
'2008-05-10 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
>
SLF4J
is
now
supported
by
using
adding
TRACE_LEVEL_FILE
=
4
to
the
database
URL
.
</
li
><
li
>
A
subset
of
the
PostgreSQL
'dollar quoting'
feature
is
now
supported
.
</
li
><
li
>
Updates
made
to
updatable
rows
are
now
visible
within
the
same
result
set
.
DatabaseMetaData
.
ownUpdatesAreVisible
now
returns
true
.
</
li
><
li
>
ParameterMetaData
now
returns
the
correct
data
for
INSERT
and
UPDATE
statements
.
</
li
><
li
>
Shell
tool
:
DESCRIBE
now
supports
an
schema
name
.
</
li
><
li
>
The
Shell
tool
now
uses
java
.
io
.
Console
to
read
the
password
when
using
JDK
1
.
6
</
li
><
li
>
The
Japanese
translation
of
the
error
messages
and
the
H2
Console
has
been
completed
by
Masahiro
Ikemoto
(
Arizona
Design
Inc
.)
</
li
><
li
>
Statements
can
now
be
canceled
remotely
(
when
using
remote
connections
).
</
li
><
li
>
Triggers
are
no
longer
executed
when
executing
an
changing
the
table
structure
(
ALTER
TABLE
).
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Some
databases
could
not
be
opened
when
appending
;
RECOVER
=
1
to
the
database
URL
.
</
li
><
li
>
The
recovery
tool
did
not
work
if
the
table
name
contained
spaces
or
if
there
was
a
comment
on
the
table
.
</
li
><
li
>
When
setting
BLOB
or
CLOB
values
larger
than
65
KB
using
a
remote
connection
,
temporary
files
were
kept
on
the
client
longer
than
required
(
until
the
connection
was
closed
or
the
object
is
garbage
collected
).
Now
they
are
removed
as
soon
as
the
PreparedStatement
is
closed
,
or
when
the
value
is
overwritten
.
</
li
><
li
>
When
using
read
-
only
databases
and
setting
LOG
=
2
,
an
exception
was
written
to
the
trace
file
when
closing
the
database
.
Fixed
.
</
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
$$
);
SELECT '
newsfeed
-
rss
.
xml
' FILE,
XMLSTARTDOC() ||
XMLNODE('
rss
', XMLATTR('
version
', '
2
.
0
'),
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
65c90c51
...
...
@@ -278,6 +278,7 @@ java org.h2.test.TestAll timer
System
.
setProperty
(
"h2.check2"
,
"true"
);
/*
create a short one page documentation
checksum: no need to checksum all data; every 128th byte is enough;
but need position+counter
JCR: for each node type, create a table; one 'dynamic' table with parameter;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论