Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8dbc5bfb
提交
8dbc5bfb
authored
9月 26, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
b9f01475
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
51 行增加
和
80 行删除
+51
-80
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
buildRelease.bat
h2/src/installer/buildRelease.bat
+0
-3
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+41
-72
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+2
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
8dbc5bfb
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.0.79 (2008-09-26)
</h2>
<ul><li>
Linked tables that point to the same database can now share the connection
within the same database. Access to the same connection is serialized. To enable this feature,
set the system property h2.shareLinkedConnections to true.
...
...
h2/src/installer/buildRelease.bat
浏览文件 @
8dbc5bfb
...
...
@@ -11,9 +11,6 @@ rem == Check that is no TODO in the docs
rem == Check code coverage
rem == Run regression test with JDK 1.4 and 1.5
rem == Use latest versions of other dbs
rem == - Derby 10.4.1.3
rem == - PostgreSQL 8.3.1
rem == - MySQL 5.0.51
rem == Change version(s) in performance.html
setlocal
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
8dbc5bfb
...
...
@@ -80,22 +80,22 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
7
8
;
public
static
final
int
BUILD_ID
=
7
9
;
/**
* The build id of the previous release.
*/
public
static
final
int
BUILD_ID_PREVIOUS
=
7
7
;
public
static
final
int
BUILD_ID_PREVIOUS
=
7
8
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2008-0
8-28
"
;
public
static
final
String
BUILD_DATE
=
"2008-0
9-26
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_PREVIOUS
=
"2008-08-
16
"
;
public
static
final
String
BUILD_DATE_PREVIOUS
=
"2008-08-
28
"
;
/**
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
8dbc5bfb
...
...
@@ -13,6 +13,47 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
49
,
'New version available: 1.0.79 (2008-09-26)'
,
'2008-09-26 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
>
Row
level
locking
for
MVCC
is
now
enabled
.
</
li
><
li
>
Multiple
processes
can
now
access
the
same
database
by
appending
;
AUTO_SERVER
=
TRUE
to
the
database
URL
.
</
li
><
li
>
The
database
supports
the
SHOW
command
for
better
MySQL
and
PostgreSQL
compatibility
.
</
li
><
li
>
Result
sets
with
just
a
unique
index
can
now
be
updated
.
</
li
><
li
>
Linked
tables
can
now
share
the
connection
.
</
li
><
li
>
Linked
tables
can
now
be
read
-
only
.
</
li
><
li
>
Linked
tables
:
the
schema
name
can
now
be
set
.
</
li
><
li
>
Linked
tables
:
worked
around
a
bug
in
Oracle
with
the
CHAR
data
type
.
</
li
><
li
>
Temporary
linked
tables
are
now
supported
.
</
li
><
li
>
Faster
storage
re
-
use
algorithm
thanks
to
Greg
Dhuse
from
cleversafe
.
com
.
</
li
><
li
>
Faster
hash
code
calculation
for
large
binary
arrays
.
</
li
><
li
>
Multi
-
Version
Concurrency
may
no
longer
be
used
when
using
the
multi
-
threaded
kernel
feature
.
</
li
><
li
>
The
H2
Console
now
abbreviates
large
texts
in
results
.
</
li
><
li
>
SET
SCHEMA_SEARCH_PATH
is
now
documented
.
</
li
><
li
>
Can
now
start
a
TCP
server
with
port
0
(
automatically
select
a
port
).
</
li
><
li
>
The
server
tool
now
displays
the
correct
IP
address
if
networked
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Multiple
UNION
queries
could
not
be
used
in
derived
tables
.
</
li
><
li
>
It
was
possible
to
create
tables
in
read
-
only
databases
.
</
li
><
li
>
SET
SCHEMA
did
not
work
for
views
.
</
li
><
li
>
The
maximum
log
file
size
setting
was
ignored
for
large
databases
.
</
li
><
li
>
The
data
type
JAVA_OBJECT
could
not
be
used
in
updatable
result
sets
.
</
li
><
li
>
The
system
property
h2
.
optimizeInJoin
did
not
work
correctly
.
</
li
><
li
>
Conditions
such
as
ID
=?
AND
ID
&
gt
;
?
were
slow
.
</
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
(
48
,
'New version available: 1.0.78 (2008-08-28)'
,
'2008-08-28 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
...
@@ -403,78 +444,6 @@ For future plans, see the ''Roadmap'' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
');
INSERT INTO ITEM VALUES(37,
'
New
version
available
:
1
.
0
.
67
(
2008
-
02
-
22
)
', '
2008
-
02
-
22
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
function
FILE_READ
to
read
a
file
or
from
an
URL
.
</
li
><
li
>
CREATE
TABLE
AS
SELECT
now
supports
a
column
list
.
</
li
><
li
>
The
CSV
tool
now
supports
a
custom
lineSeparator
.
</
li
><
li
>
A
user
now
has
all
rights
on
his
own
local
temporary
tables
.
</
li
><
li
>
Opening
databases
with
ACCESS_MODE_DATA
=
r
is
now
supported
.
</
li
><
li
>
Protection
against
password
dictionary
attacks
in
server
mode
.
</
li
><
li
>
The
value
cache
is
improved
to
save
memory
.
</
li
><
li
>
Large
result
sets
are
now
a
bit
faster
.
</
li
><
li
>
ALTER
SEQUENCE
now
support
parameters
.
</
li
><
li
>
Statement
.
setQueryTimeout
()
is
now
supported
.
</
li
><
li
>
New
session
setting
QUERY_TIMEOUT
.
</
li
><
li
>
The
H2
Console
has
been
translated
to
Dutch
.
Thanks
a
lot
to
Remco
Schoen
!
</
li
><
li
>
The
H2
Console
is
now
faster
for
databases
containing
many
tables
.
</
li
><
li
>
Databases
can
now
be
opened
even
if
trigger
classes
are
not
in
the
classpath
.
</
li
><
li
>
Changing
the
transaction
log
level
(
SET
LOG
)
is
now
written
to
the
trace
file
.
</
li
><
li
>
Primary
key
are
now
ordered
before
foreign
key
constraints
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
When
using
multiple
connections
,
empty
space
was
reused
too
early
sometimes
.
This
could
corrupt
the
database
when
recovering
.
</
li
><
li
>
The
DbStarter
servlet
didn
''
t
start
the
TCP
listener
even
if
configured
.
</
li
><
li
>
The
user
directory
prefix
(
''
~
''
)
was
ignored
sometimes
.
</
li
><
li
>
Connecting
to
a
TCP
server
and
at
shutting
it
down
at
the
same
time
could
fail
.
</
li
><
li
>
CREATE
INDEX
on
a
table
with
many
rows
used
too
much
memory
.
</
li
><
li
>
A
referential
constraint
to
a
table
in
a
different
schema
could
not
be
created
.
</
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(36,
'
New
version
available
:
1
.
0
.
66
(
2008
-
02
-
02
)
', '
2008
-
02
-
02
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
tool
:
<
a
href
=
"http://www.h2database.com/html/sourceError.html"
>
Online
Error
Analyzer
</
a
>
.
</
li
><
li
>
In
the
H2
Console
,
errors
now
link
to
the
docs
and
source
code
.
</
li
><
li
>
IKVM
(
www
.
ikvm
.
net
)
is
now
better
supported
.
</
li
><
li
>
The
exception
''
Value
too
long
for
column
''
now
includes
the
data
.
</
li
><
li
>
Statements
that
contain
very
large
subqueries
are
now
faster
.
</
li
><
li
>
Fulltext
search
is
now
supported
in
named
in
-
memory
databases
.
</
li
><
li
>
Primary
keys
can
now
have
a
constraint
name
.
</
li
><
li
>
Calling
EXTRACT
(
HOUR
FROM
...)
returned
the
wrong
values
.
Please
check
if
your
application
relies
on
the
old
behavior
before
upgrading
.
</
li
><
li
>
The
meta
data
compatibility
with
other
databases
has
been
improved
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
CHAR
data
type
equals
comparison
was
wrong
.
</
li
><
li
>
The
table
name
was
missing
in
the
documentation
of
CREATE
INDEX
.
</
li
><
li
>
The
cache
memory
usage
calculation
has
been
improved
.
</
li
><
li
>
The
exception
"Hex string contains non-hex character"
was
not
thrown
.
</
li
><
li
>
The
acting
as
PostgreSQL
server
,
a
base
directory
was
not
set
correctly
.
</
li
><
li
>
Variables
:
large
objects
now
work
correctly
.
</
li
><
li
>
H2
Console
:
multiple
consecutive
spaces
in
the
setting
name
did
not
work
.
</
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/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
8dbc5bfb
...
...
@@ -560,4 +560,5 @@ owl rdf recommendations axiom fabric broker osoa epictetus replacements
brittain wasn november unixtime ddd jason formatter psqlodbc onmousemove
monitoring razuna asset drag pekar devx dmitry fragments onmouseup nav
onmousedown olap valign army blitz backgammon knife abbreviate berger dhuse
strictly greg germany abbreviates frontends cleversafe payload cloneable
strictly greg germany abbreviates frontends cleversafe payload cloneable
scripting jaks
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论