Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a40432c5
提交
a40432c5
authored
9月 04, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
82d25029
全部展开
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
1119 行增加
和
1096 行删除
+1119
-1096
changelog.html
h2/src/docsrc/html/changelog.html
+7
-2
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+360
-351
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+360
-351
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+354
-351
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+34
-37
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
a40432c5
...
...
@@ -18,7 +18,12 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
When calling SHUTDOWN IMMEDIATELY in the server mode, the .trace.db file was not closed.
<ul><li>
-
</li></ul>
<h2>
Version 1.1.118 (2009-09-04)
</h2>
<ul><li>
SHOW COLUMNS only listed indexed columns.
</li><li>
When calling SHUTDOWN IMMEDIATELY in the server mode, the .trace.db file was not closed.
</li><li>
DatabaseMetaData.getPrimaryKeys: the wrong constraint name was reported
if there was another constraint on the same table and columns.
</li><li>
AUTO_INCREMENT now works in the same way in ALTER TABLE ALTER COLUMN
...
...
@@ -26,7 +31,7 @@ Change Log
</li><li>
Native fulltext search: before searching, FT_INIT() had to be called.
This is no longer required.
</li><li>
Better support GaeVFS (Google App Engine Virtual File System).
</li><li>
JaQu: the plan is to support natural (pure Java) conditions such as
</li><li>
JaQu: the plan is to support natural (pure Java
/ Scala
) conditions such as
(id == 1
&&
name.equals("Test")). A proof of concept decompiler is now included (it doesn't work yet).
</li><li>
Various bugfixes and improvements in the page store mechanism (still experimental).
</li><li>
PreparedStatement.setObject now converts a java.lang.Character to a string.
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
a40432c5
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
a40432c5
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
a40432c5
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
a40432c5
...
...
@@ -14,22 +14,22 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
11
7
;
public
static
final
int
BUILD_ID
=
11
8
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
11
6
;
public
static
final
int
BUILD_ID_STABLE
=
11
7
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-0
8-09
"
;
public
static
final
String
BUILD_DATE
=
"2009-0
9-04
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
7-18
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
8-09
"
;
/**
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
a40432c5
...
...
@@ -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
(
68
,
'New version available: 1.1.118 (2009-09-04)'
,
'2009-09-04 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
>
Better
optimizations
for
OR
,
IN
(..),
and
IN
(
SELECT
..)
are
available
.
</
li
><
li
>
Better
support
GaeVFS
(
Google
App
Engine
Virtual
File
System
).
</
li
><
li
>
JaQu
:
the
plan
is
to
support
pure
Java
/
Scala
conditions
using
de
-
compilation
.
</
li
><
li
>
Various
tools
now
use
Java
5
var
-
args
.
</
li
><
li
>
H2
Console
:
indexes
in
non
-
default
schemas
are
now
listed
.
</
li
><
li
>
H2
Console
:
PierPaolo
Ucchino
has
completed
the
Italian
translation
.
Thanks
a
lot
!
</
li
><
li
>
The
stack
trace
of
common
exceptions
is
no
longer
logged
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
SHOW
COLUMNS
only
listed
indexed
columns
.
</
li
><
li
>
When
calling
SHUTDOWN
IMMEDIATELY
,
a
file
was
not
closed
.
</
li
><
li
>
DatabaseMetaData
.
getPrimaryKeys
:
the
wrong
constraint
name
was
reported
.
</
li
><
li
>
AUTO_INCREMENT
now
does
not
create
a
primary
key
for
ALTER
TABLE
.
</
li
><
li
>
Native
fulltext
search
:
FT_INIT
()
now
only
needs
to
be
called
once
.
</
li
><
li
>
Various
bugfixes
and
improvements
in
the
page
store
mechanism
.
</
li
><
li
>
PreparedStatement
.
setObject
now
supports
java
.
lang
.
Character
.
</
li
><
li
>
MVCC
/
duplicate
primary
key
after
rollback
.
</
li
><
li
>
MVCC
/
wrong
exception
is
thrown
.
</
li
><
li
>
Sequence
.
NEXTVAL
and
CURRVAL
did
not
respect
the
schema
search
path
.
</
li
><
li
>
The
exception
"Row not found when trying to delete"
was
thrown
sometimes
.
</
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
(
67
,
'New version available: 1.1.117 (2009-08-09)'
,
'2009-08-09 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
...
@@ -407,43 +441,6 @@ 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
>
.
(
You
may
have
to
click
'Refresh'
).
<
br
/>
<
b
>
Changes
and
new
functionality
:
</
b
>
<
ul
><
li
>
ResultSet
.
getObject
for
a
lob
will
return
java
.
sql
.
Clob
/
Blob
.
</
li
><
li
>
The
interface
CloseListener
has
a
new
method
'remove'
.
</
li
><
li
>
Compatibility
for
MS
SQL
Server
DATEDIFF
(
YYYY
,
..,
..)
</
li
><
li
>
The
emergency
reserve
file
has
been
removed
.
</
li
><
li
>
The
H2DatabaseProvider
for
ActiveObjects
is
now
included
.
</
li
><
li
>
The
H2Platform
for
Oracle
Toplink
Essential
has
been
improved
.
</
li
><
li
>
Build
:
JAVA_HOME
is
now
automatically
detected
on
Mac
OS
X
.
</
li
><
li
>
The
cache
memory
usage
calculation
is
more
conservative
.
</
li
><
li
>
Large
databases
on
FAT
file
system
are
now
supported
.
</
li
><
li
>
The
database
now
tries
to
detect
if
the
web
application
is
stopped
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Fulltext
search
:
a
memory
leak
has
been
fixed
.
</
li
><
li
>
A
query
with
group
by
that
was
used
like
a
table
could
throw
an
exception
.
</
li
><
li
>
JaQu
:
tables
are
now
auto
-
created
when
running
a
query
.
</
li
><
li
>
The
optimizer
had
problems
with
function
tables
.
</
li
><
li
>
The
function
SUM
could
overflow
when
using
large
values
.
</
li
><
li
>
The
function
AVG
could
overflow
when
using
large
values
.
</
li
><
li
>
Testing
for
local
connections
was
very
slow
on
some
systems
.
</
li
><
li
>
Allocating
space
got
slower
and
slower
the
larger
the
database
.
</
li
><
li
>
ALTER
TABLE
ALTER
COLUMN
could
throw
the
wrong
exception
.
</
li
><
li
>
Updatable
result
sets
:
the
key
columns
can
now
be
updated
.
</
li
><
li
>
The
Windows
service
to
start
H2
didn
't work in version 1.1.
</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'
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论