Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
15c65f76
提交
15c65f76
authored
1月 15, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
59f5146c
全部展开
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
369 行增加
和
455 行删除
+369
-455
changelog.html
h2/src/docsrc/html/changelog.html
+4
-25
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+350
-401
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+13
-27
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
15c65f76
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.2.127 (2010-01-15)
</h2>
<ul><li>
Serialized access mode (server-less multi-connection mode): sequences did not work as expected
(there were gaps in generated values when using multiple connections).
</li><li>
Page store: new databases can not be opened with older versions.
...
...
@@ -599,30 +603,5 @@ Change Log
the wrong exception was thrown ('Connection is broken' instead of 'Error opening database: lock file modified in the future').
</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.
</li><li>
When used in a subquery, LIKE and IN(..) did not work correctly sometimes.
</li><li>
The fulltext search documentation has been improved.
</li><li>
ARRAY_GET returned the wrong data type (ARRAY). Now it returns VARCHAR.
</li><li>
Natural join: the joined columns are not repeated any more when using SELECT *.
</li><li>
User defined aggregate functions: the method getType expected internal data types
instead of SQL types.
</li><li>
User defined aggregate functions did not work if there was no group by expression.
</li><li>
MySQL compatibility: support for := assignment as in @sum:=@sum+x
</li><li>
INSERT INTO TEST(SELECT * FROM TEST) is now supported.
</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>
New meta data column INFORMATION_SCHEMA.TABLES.LAST_MODIFICATION to get
the table modification counter.
</li><li>
Shell: line comments didn't work correctly.
</li><li>
H2 Console: columns are now listed for up to 500 tables instead of 100.
</li><li>
H2 Console: Cmd+Enter executes the current statement, Alt+Space for autocomplete.
</li><li>
JaQu: the maximum length of a column can now be defined using maxLength.
For an example, see Product.java (maxLength(category, 255)).
</li><li>
R
ı
dvan A
ğ
ar has completed the Turkish translation of the H2 Console. Thanks a lot!
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
15c65f76
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
15c65f76
...
...
@@ -14,7 +14,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
12
6
;
public
static
final
int
BUILD_ID
=
12
7
;
/**
* The build id of the last stable release.
...
...
@@ -32,7 +32,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"20
09-12-18
"
;
public
static
final
String
BUILD_DATE
=
"20
10-01-15
"
;
/**
* The build date is updated for each public release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
15c65f76
...
...
@@ -13,6 +13,19 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
77
,
'New version available: 1.2.127 (2010-01-15)'
,
'2009-12-18 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
/>
For
details
,
see
the
<
a
href
=
"http://www.h2database.com/html/changelog.html"
>
change
log
</
a
>
.
<
br
/>
For
future
plans
,
see
the
<
a
href
=
"http://www.h2database.com/html/roadmap.html"
>
roadmap
</
a
>
.
$$
);
INSERT
INTO
ITEM
VALUES
(
76
,
'New version available: 1.2.126 (2009-12-18)'
,
'2009-12-18 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
...
...
@@ -298,33 +311,6 @@ For future plans, see the 'Roadmap' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
INSERT
INTO
ITEM
VALUES
(
64
,
'New version available: 1.1.114 (2009-06-01)'
,
'2009-06-01 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
>
Java
1
.
5
is
now
required
to
run
H2
.
</
li
><
li
>
Fulltext
search
:
data
is
no
longer
deleted
and
re
-
inserted
if
there
was
no
change
.
</
li
><
li
>
Microsoft
Windows
:
when
using
the
the
installer
,
Vista
wrote
"This program may not have installed correctly."
This
message
should
no
longer
appear
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
ResultSetMetaData
.
getColumnClassName
returned
the
wrong
class
for
CLOB
and
BLOB
columns
.
</
li
><
li
>
In
some
situations
,
an
ArrayIndexOutOfBoundsException
was
thrown
when
adding
rows
.
</
li
><
li
>
The
Recover
tool
did
not
always
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'
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论