Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8821eaa8
提交
8821eaa8
authored
3月 14, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release.
上级
815d6b6f
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
1348 行增加
和
1375 行删除
+1348
-1375
advanced.html
h2/src/docsrc/html/advanced.html
+1
-1
changelog.html
h2/src/docsrc/html/changelog.html
+4
-11
download.html
h2/src/docsrc/html/download.html
+1
-1
mainWeb.html
h2/src/docsrc/html/mainWeb.html
+1
-1
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+447
-456
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+447
-456
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+444
-447
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-0
没有找到文件。
h2/src/docsrc/html/advanced.html
浏览文件 @
8821eaa8
...
...
@@ -1487,7 +1487,7 @@ the limit is 4 GB for the data. This is the limitation of the file system. The d
workaround for this problem, it is to use the file name prefix
<code>
split:
</code>
. In that case files are split into
files of 1 GB by default. An example database URL is:
<code>
jdbc:h2:split:~/test
</code>
.
</li><li>
The maximum number of rows per table is 2
'147'483'648
.
</li><li>
The maximum number of rows per table is 2
^64
.
</li><li>
Main memory requirements: The larger the database, the more main memory is required.
With the version 1.1 storage mechanism, the minimum main memory required for a 12 GB database was around 240 MB.
With the current page store, the minimum main memory required is much lower, around 1 MB for each 8 GB database file size.
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
8821eaa8
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.3.153 (2011-03-14)
</h2>
<ul><li>
Issue 294: The Maven source bundle now contains a manifest file that allows Eclipse to automatically
attach the source code (if Maven is used).
</li><li>
A query with an explicit LIMIT 0 will now return no rows (so far it meant no limit),
...
...
@@ -857,16 +861,5 @@ Change Log
</li><li>
Literals of type BIGINT now have the correct data type.
</li></ul>
<h2>
Version 1.2.131 (2010-03-05)
</h2>
<ul><li>
Older versions of H2 (version 1.2.127 and older) could not connect to a new version (version 1.2.129 and newer).
The connection blocked when trying to connect. Now the connection no longer blocks, instead a SQL exception is thrown.
</li><li>
In versions 1.2.129 and 1.2.130, a database could not be opened sometimes
after dropping tables or indexes, and then creating new indexes for existing tables.
The exception contained the text "parent not found" (version 1.2.129) or
"Table not found" (version 1.2.130).
</li><li>
After the database was closed, a null pointer exception could occur in Database.flush.
</li><li>
An ArrayIndexOutOfBoundsException could occur in the page store (eg. on "delete from table"). Fixed.
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/html/download.html
浏览文件 @
8821eaa8
...
...
@@ -17,7 +17,7 @@ Downloads
<h1>
Downloads
</h1>
<h3>
Version ${version} (${versionDate})
, Beta
</h3>
<h3>
Version ${version} (${versionDate})
</h3>
<p>
<a
href=
"http://www.h2database.com/h2-setup-${versionDate}.exe"
>
Windows Installer
</a>
<!-- sha1Exe -->
<br
/>
...
...
h2/src/docsrc/html/mainWeb.html
浏览文件 @
8821eaa8
...
...
@@ -35,7 +35,7 @@ Welcome to H2, the Java SQL database. The main features of H2 are:
<table
style=
"border: 0px; margin: 0px 7px 12px 7px;"
>
<tr><td
style=
"border: 0px; background-color: #eee;"
colspan=
"2"
>
<h2
style=
"margin-top: 1em;"
>
Download
</h2>
Version ${version} (${versionDate})
, Beta
Version ${version} (${versionDate})
</td></tr>
<tr><td
style=
"border: 0px; background-color: #eee;"
>
<a
href=
"http://www.h2database.com/h2-setup-${versionDate}.exe"
><img
style=
"border: 1px #00f solid;"
src=
"images/download.png"
alt=
"Download this database"
width=
"22"
height=
"20"
/></a>
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
8821eaa8
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
8821eaa8
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
8821eaa8
This source diff could not be displayed because it is too large. You can
view the blob
instead.
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
8821eaa8
...
...
@@ -16,7 +16,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2011-03-
01
"
;
public
static
final
String
BUILD_DATE
=
"2011-03-
14
"
;
/**
* The build date is updated for each public release.
...
...
@@ -26,7 +26,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
15
2
;
public
static
final
int
BUILD_ID
=
15
3
;
/**
* The build id of the last stable release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
8821eaa8
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
103
,
'1.3.153'
,
'2011-03-14'
),
(
102
,
'1.3.152 Beta'
,
'2011-03-01'
),
(
101
,
'1.3.151 Beta'
,
'2011-02-12'
),
(
100
,
'1.3.150 Beta'
,
'2011-01-28'
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论