Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
7c2148dd
提交
7c2148dd
authored
10月 15, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
a4f95b2b
全部展开
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
1833 行增加
和
1794 行删除
+1833
-1794
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
links.html
h2/src/docsrc/html/links.html
+1
-1
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+610
-595
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+610
-595
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+602
-597
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
7c2148dd
...
@@ -18,6 +18,10 @@ Change Log
...
@@ -18,6 +18,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.2.143 (2010-09-18)
</h2>
<ul><li>
The Windows .bat files did not contain CR+LF.
<ul><li>
The Windows .bat files did not contain CR+LF.
</li><li>
The LOB storage (when the system property h2.lobInDatabase is set) is now only initialized when needed.
</li><li>
The LOB storage (when the system property h2.lobInDatabase is set) is now only initialized when needed.
</li><li>
The index condition columnName IS NULL was not efficient when using a clustered index.
</li><li>
The index condition columnName IS NULL was not efficient when using a clustered index.
...
...
h2/src/docsrc/html/links.html
浏览文件 @
7c2148dd
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
7c2148dd
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
7c2148dd
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
7c2148dd
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
7c2148dd
...
@@ -14,12 +14,12 @@ public class Constants {
...
@@ -14,12 +14,12 @@ 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
=
14
3
;
public
static
final
int
BUILD_ID
=
14
4
;
/**
/**
* The build id of the last stable release.
* The build id of the last stable release.
*/
*/
public
static
final
int
BUILD_ID_STABLE
=
14
2
;
public
static
final
int
BUILD_ID_STABLE
=
14
3
;
/**
/**
* If H2 is compiled to be included in a product, this should be set to
* If H2 is compiled to be included in a product, this should be set to
...
@@ -32,12 +32,12 @@ public class Constants {
...
@@ -32,12 +32,12 @@ public class Constants {
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE
=
"2010-
09-18
"
;
public
static
final
String
BUILD_DATE
=
"2010-
10-15
"
;
/**
/**
* The build date is updated for each public release.
* The build date is updated for each public release.
*/
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
8-31
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2010-0
9-18
"
;
/**
/**
* The TCP protocol version number 6.
* The TCP protocol version number 6.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
7c2148dd
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
INSERT
INTO
VERSION
VALUES
(
94
,
'1.2.144'
,
'2010-10-15'
),
(
93
,
'1.2.143'
,
'2010-09-18'
),
(
93
,
'1.2.143'
,
'2010-09-18'
),
(
92
,
'1.2.142'
,
'2010-08-31'
),
(
92
,
'1.2.142'
,
'2010-08-31'
),
(
91
,
'1.2.141'
,
'2010-08-22'
),
(
91
,
'1.2.141'
,
'2010-08-22'
),
...
@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
...
@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
(
82
,
'1.2.132'
,
'2010-03-21'
),
(
82
,
'1.2.132'
,
'2010-03-21'
),
(
81
,
'1.2.131'
,
'2010-03-05'
),
(
81
,
'1.2.131'
,
'2010-03-05'
),
(
80
,
'1.2.130'
,
'2010-02-26'
),
(
80
,
'1.2.130'
,
'2010-02-26'
),
(
79
,
'1.2.129'
,
'2010-02-19'
),
;
;
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
CREATE
TABLE
CHANNEL
(
TITLE
VARCHAR
,
LINK
VARCHAR
,
DESC
VARCHAR
,
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
7c2148dd
...
@@ -658,4 +658,4 @@ skiing honor marketing sleeping dlucene timezones shifted analyzed insists
...
@@ -658,4 +658,4 @@ skiing honor marketing sleeping dlucene timezones shifted analyzed insists
train joining bilingual existed extremely fog bordercolor overlapping
train joining bilingual existed extremely fog bordercolor overlapping
unlocking webkit dalvik recorded defrag marschall helping victor philippe
unlocking webkit dalvik recorded defrag marschall helping victor philippe
pyankov enctype multipart boundary mistake enlarge demonstrates aggregating
pyankov enctype multipart boundary mistake enlarge demonstrates aggregating
bypassing khtml doubled inlined
bypassing khtml doubled inlined
defragmented
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论