Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
555b8062
提交
555b8062
authored
10月 24, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
f3d01de2
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
1071 行增加
和
1035 行删除
+1071
-1035
changelog.html
h2/src/docsrc/html/changelog.html
+1
-1
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+346
-343
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+346
-343
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+345
-344
buildRelease.bat
h2/src/installer/buildRelease.bat
+1
-0
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+28
-0
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
555b8062
...
...
@@ -19,7 +19,7 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul><li>
The French translation of the H2 Console has been improved by Olivier Parent.
Thanks a lot!
Thanks a lot!
</li><li>
There was a memory leak when creating and dropping tables and
indexes in a loop (persistent database only).
</li><li>
SET LOG 2 was not effective if executed after opening the database.
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
555b8062
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
555b8062
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
555b8062
差异被折叠。
点击展开。
h2/src/installer/buildRelease.bat
浏览文件 @
555b8062
...
...
@@ -45,6 +45,7 @@ echo %time:~0,8% Done
rem == Test with Hibernate
rem == Run FindBugs
rem == buildRelease.bat
rem == Check docs, versions and links in main, downloads, build numbers
rem == Check if missing javadocs
rem == Test installer
...
...
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
555b8062
...
...
@@ -80,7 +80,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
10
1
;
public
static
final
int
BUILD_ID
=
10
2
;
/**
* The build id of the last stable release.
...
...
@@ -90,7 +90,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2008-10-
17
"
;
public
static
final
String
BUILD_DATE
=
"2008-10-
24
"
;
/**
* The build date is updated for each public release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
555b8062
...
...
@@ -13,6 +13,34 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
52
,
'New version available: 1.1.102 (beta; 2008-10-24)'
,
'2008-10-24 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
>
The
French
translation
of
the
H2
Console
has
been
improved
by
Olivier
Parent
.
</
li
><
li
>
Translating
the
H2
Console
is
now
simpler
.
</
li
><
li
>
Common
exception
(
error
code
23
*
)
are
no
longer
written
to
the
.
trace
.
db
file
by
default
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
ResultSetMetaData
.
getColumnName
now
returns
the
alias
name
except
for
columns
.
</
li
><
li
>
Temporary
files
are
now
deleted
when
the
database
is
closed
,
even
if
they
were
not
garbage
collected
so
far
.
</
li
><
li
>
There
was
a
memory
leak
when
creating
and
dropping
tables
and
indexes
in
a
loop
(
persistent
database
only
).
</
li
><
li
>
SET
LOG
2
was
not
effective
if
executed
after
opening
the
database
.
</
li
><
li
>
In
-
memory
databases
don
't write LOBs to files any longer.
</li><li>Self referencing constraints didn'
t
restrict
deleting
rows
that
reference
itself
if
there
is
another
row
that
references
it
.
</
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
(
51
,
'New version available: 1.1.101 (beta; 2008-10-17)'
,
'2008-10-17 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
555b8062
...
...
@@ -281,7 +281,7 @@ java org.h2.test.TestAll timer
/*
allow to map TEXT to VARCHAR
Compatiblity with PostgreSQL
: TEXT seems to be VARCHAR there.
PostgreSQL compatibility
: TEXT seems to be VARCHAR there.
http://validator.w3.org/
test web site (including search, main, web main)
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
555b8062
...
...
@@ -568,4 +568,4 @@ classname recaptcha unload unloaded unloads activator statistic hence rathsack
reflects doy bloom minimal gmx conserve panic serious robert thursday
wednesday saturday friday tuesday sharing opposite fassi dario clauses
factorial blogspot displaying thedevcloud dayof safety chrome favorite thumbs
localization
\ No newline at end of file
localization olivier
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论