Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
45f9b212
提交
45f9b212
authored
7月 27, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
46312230
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
43 行增加
和
43 行删除
+43
-43
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
buildRelease.bat
h2/src/installer/buildRelease.bat
+2
-1
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+33
-38
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
45f9b212
...
@@ -16,6 +16,10 @@ Change Log
...
@@ -16,6 +16,10 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.0.76 (2008-07-27)
</h2>
<ul><li>
The comment of a domain (user defined data type) is now used as the
<ul><li>
The comment of a domain (user defined data type) is now used as the
default column comment when creating a column with this domain.
default column comment when creating a column with this domain.
</li><li>
Invalid database names are now detected and a better error message is thrown.
</li><li>
Invalid database names are now detected and a better error message is thrown.
...
...
h2/src/installer/buildRelease.bat
浏览文件 @
45f9b212
...
@@ -4,9 +4,9 @@ echo %time:~0,8%
...
@@ -4,9 +4,9 @@ echo %time:~0,8%
rem == Change version and build number in Constants.java
rem == Change version and build number in Constants.java
rem == Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
rem == Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
rem == Update the changelog (add new version)
rem == Update the changelog (add new version)
rem == Update the newsfeed
rem == No " Message.get" (must be "throw Message.get")
rem == No " Message.get" (must be "throw Message.get")
rem == Documentation: check if all Javadoc files are in the index
rem == Documentation: check if all Javadoc files are in the index
rem == Update the newsfeed
rem == Check that is no TODO in the docs
rem == Check that is no TODO in the docs
rem == Check code coverage
rem == Check code coverage
...
@@ -54,6 +54,7 @@ soffice.exe -invisible macro:///Standard.Module1.H2Pdf
...
@@ -54,6 +54,7 @@ soffice.exe -invisible macro:///Standard.Module1.H2Pdf
call java14 >nul 2>nul
call java14 >nul 2>nul
call build -quiet all
call build -quiet all
copy ..\h2web\h2.pdf docs >nul
copy ..\h2web\h2.pdf docs >nul
xcopy /s /q /y dataWeb ..\h2web >nul
call build -quiet zip
call build -quiet zip
makensis /v2 src/installer/h2.nsi
makensis /v2 src/installer/h2.nsi
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
45f9b212
...
@@ -80,22 +80,22 @@ public class Constants {
...
@@ -80,22 +80,22 @@ public class Constants {
/**
/**
* The build id is incremented for each public release.
* The build id is incremented for each public release.
*/
*/
public
static
final
int
BUILD_ID
=
7
5
;
public
static
final
int
BUILD_ID
=
7
6
;
/**
/**
* The build id of the previous release.
* The build id of the previous release.
*/
*/
public
static
final
int
BUILD_ID_PREVIOUS
=
7
4
;
public
static
final
int
BUILD_ID_PREVIOUS
=
7
5
;
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE
=
"2008-07-
14
"
;
public
static
final
String
BUILD_DATE
=
"2008-07-
27
"
;
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE_PREVIOUS
=
"2008-0
6-21
"
;
public
static
final
String
BUILD_DATE_PREVIOUS
=
"2008-0
7-14
"
;
/**
/**
* The TCP protocol version number 5. This protocol is used by the TCP
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
45f9b212
...
@@ -13,6 +13,39 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
...
@@ -13,6 +13,39 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
46
,
'New version available: 1.0.76 (2008-07-27)'
,
'2008-07-27 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
>
Key
values
can
now
be
changed
in
updatable
result
sets
.
</
li
><
li
>
Changes
in
updatable
result
sets
are
now
always
visible
.
</
li
><
li
>
There
is
a
problem
with
Hibernate
when
using
Boolean
columns
,
see
http
:
//
opensource
.
atlassian
.
com
/
projects
/
hibernate
/
browse
/
HHH
-
3401
<
ul
><
li
>
The
comment
of
a
domain
(
user
defined
data
type
)
is
now
used
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
ResultSetMetaData
.
getColumnClassName
now
returns
the
correct
class
name
for
BLOB
and
CLOB
.
</
li
><
li
>
Fixed
the
Oracle
mode
:
Oracle
allows
multiple
rows
only
where
all
columns
of
the
unique
index
are
NULL
.
</
li
><
li
>
ORDER
BY
on
tableName
.
columnName
didn
't work correctly if the column
name was also used as an alias.
</li><li>Invalid database names are now detected and a better error message is thrown.
</li><li>H2 Console: The progress display when opening a database has been improved.
</li><li>The error message when the server doesn'
t
start
has
been
improved
.
</
li
><
li
>
Temporary
files
were
sometimes
deleted
too
late
when
executing
large
insert
,
update
,
or
delete
operations
.
</
li
><
li
>
The
database
file
was
growing
after
deleting
many
rows
,
and
after
large
update
operations
.
</
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
(
45
,
INSERT
INTO
ITEM
VALUES
(
45
,
'New version available: 1.0.75 (2008-07-14)'
,
'2008-07-14 12:00:00'
,
'New version available: 1.0.75 (2008-07-14)'
,
'2008-07-14 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
@@ -418,44 +451,6 @@ For future plans, see the ''Roadmap'' page at
...
@@ -418,44 +451,6 @@ For future plans, see the ''Roadmap'' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
');
');
INSERT INTO ITEM VALUES(34,
'
New
version
available
:
1
.
0
.
64
(
2007
-
12
-
27
)
', '
2007
-
12
-
27
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
>
An
exclusive
mode
is
now
supported
.
</
li
><
li
>
The
method
Trigger
.
init
has
been
changed
.
</
li
><
li
>
New
built
-
in
functions
RPAD
and
LPAD
.
</
li
><
li
>
New
meta
data
table
INFORMATION_SCHEMA
.
SESSIONS
and
LOCKS
.
</
li
><
li
>
H2
Console
/
autocomplete
:
Ctrl
+
Space
now
shows
the
list
in
all
modes
.
</
li
><
li
>
Loading
classes
and
calling
methods
can
be
restricted
.
</
li
><
li
>
Thanks
to
Fulvio
Biondi
,
the
FTP
server
now
supports
a
event
listener
.
</
li
><
li
>
New
system
function
CANCEL_SESSION
.
</
li
><
li
>
The
H2
Console
has
been
translated
to
Turkish
by
Ridvan
Agar
!
</
li
><
li
>
H2
Console
:
when
editing
result
sets
,
columns
can
now
be
set
to
null
.
</
li
><
li
>
ResultSet
methods
with
column
name
are
now
faster
.
</
li
><
li
>
Improved
debugging
support
:
toString
now
returns
a
meaningful
text
.
</
li
><
li
>
The
classes
DbStarter
and
WebServlet
have
been
moved
to
src
/
main
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
The
PostgreSQL
ODBC
driver
did
not
work
in
the
last
release
.
</
li
><
li
>
CSV
tool
:
some
escape
/
separator
characters
did
not
work
.
</
li
><
li
>
CSV
tool
:
the
character
#
could
not
be
used
as
a
separator
.
</
li
><
li
>
3
-
way
union
queries
could
return
the
wrong
results
.
</
li
><
li
>
The
MVCC
mode
did
not
work
well
with
in
-
memory
databases
.
</
li
><
li
>
The
Ukrainian
translation
was
not
working
in
the
last
release
.
</
li
><
li
>
Creating
many
tables
(
many
hundreds
)
was
slow
.
</
li
><
li
>
Opening
a
database
with
many
indexes
(
thousands
)
was
slow
.
</
li
><
li
>
A
stack
trace
thrown
for
systems
with
a
slow
secure
random
source
.
</
li
><
li
>
The
column
INFORMATION_SCHEMA
.
TRIGGERS
.
SQL
is
now
correct
.
</
li
><
li
>
This
database
could
not
be
used
in
applets
.
</
li
><
li
>
The
index
file
is
now
re
-
created
automatically
when
required
.
</
li
></
ul
>
For
future
plans
,
see
the
''
Roadmap
''
page
at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
');
SELECT '
newsfeed
-
rss
.
xml
' FILE,
SELECT '
newsfeed
-
rss
.
xml
' FILE,
XMLSTARTDOC() ||
XMLSTARTDOC() ||
XMLNODE('
rss
', XMLATTR('
version
', '
2
.
0
'),
XMLNODE('
rss
', XMLATTR('
version
', '
2
.
0
'),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论