Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b924fc10
提交
b924fc10
authored
6月 28, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
5af45034
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
7 行增加
和
7 行删除
+7
-7
advanced.html
h2/src/docsrc/html/advanced.html
+2
-2
changelog.html
h2/src/docsrc/html/changelog.html
+5
-5
没有找到文件。
h2/src/docsrc/html/advanced.html
浏览文件 @
b924fc10
...
@@ -1581,8 +1581,8 @@ This database has the following known limitations:
...
@@ -1581,8 +1581,8 @@ This database has the following known limitations:
An example database URL is:
<code>
jdbc:h2:split:~/test
</code>
.
An example database URL is:
<code>
jdbc:h2:split:~/test
</code>
.
</li><li>
The maximum number of rows per table is 2^64.
</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.
</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 storage mechanism (the page store),
With the current page store, the minimum main memory required is much lower,
around 1 MB for each 8 GB database file size.
the minimum main memory required is
around 1 MB for each 8 GB database file size.
</li><li>
Limit on the complexity of SQL statements.
</li><li>
Limit on the complexity of SQL statements.
Statements of the following form will result in a stack overflow exception:
Statements of the following form will result in a stack overflow exception:
<pre>
<pre>
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
b924fc10
...
@@ -25,11 +25,11 @@ Change Log
...
@@ -25,11 +25,11 @@ Change Log
</li><li>
For in-memory databases, creating an index on a CLOB or BLOB column
</li><li>
For in-memory databases, creating an index on a CLOB or BLOB column
is no longer supported. This is to simplify the MVTableEngine.
is no longer supported. This is to simplify the MVTableEngine.
</li><li>
New column "information_schema.tables.row_count_estimate".
</li><li>
New column "information_schema.tables.row_count_estimate".
</li><li>
Issue 468: trunc(timestamp) could return the wrong value.
</li><li>
Issue 468: trunc(timestamp) could return the wrong value
(+12 hours), and trunc(number) throw a NullPointerException
.
</li><li>
Fixed a deadlock when updating LOB's concurrently. See TestLob.testDeadlock2().
</li><li>
Fixed a deadlock when updating LOB's concurrently. See TestLob.testDeadlock2().
</li><li>
Fixed a deadlock related to very large temporary result sets.
</li><li>
Fixed a deadlock related to very large temporary result sets.
</li><li>
Add "-list" command line option to Shell tool so that result-list-mode can be triggered when reading from a file.
</li><li>
Add "-list" command line option to Shell tool so that result-list-mode can be triggered when reading from a file.
</li><li>
Issue 474:
H2 Mysql
Compatibility code fails to ignore "COMMENT" in CREATE TABLE, patch from Aaron Azeckoski.
</li><li>
Issue 474:
H2 MySQL
Compatibility code fails to ignore "COMMENT" in CREATE TABLE, patch from Aaron Azeckoski.
</li><li>
Issue 476: Broken link in jaqu.html
</li><li>
Issue 476: Broken link in jaqu.html
</li><li>
Fix potential UTF8 encoding issue in org.h2.store.FileStore, reported by Juerg Spiess.
</li><li>
Fix potential UTF8 encoding issue in org.h2.store.FileStore, reported by Juerg Spiess.
</li><li>
Improve error message when check constraint is broken, test case from Gili (cowwoc).
</li><li>
Improve error message when check constraint is broken, test case from Gili (cowwoc).
...
@@ -42,7 +42,7 @@ Change Log
...
@@ -42,7 +42,7 @@ Change Log
</li><li>
Issue 479: Support for SUBSTRING without a FROM condition, patch from Andrew Franklin.
</li><li>
Issue 479: Support for SUBSTRING without a FROM condition, patch from Andrew Franklin.
</li><li>
Issue 472: PgServer does not work with any recent Postgres JDBC driver, patch from Andrew Franklin.
</li><li>
Issue 472: PgServer does not work with any recent Postgres JDBC driver, patch from Andrew Franklin.
</li><li>
Add syntax for passing additional parameters into custom TableEngine implementations.
</li><li>
Add syntax for passing additional parameters into custom TableEngine implementations.
</li><li>
Issue 480: Bugfix post issue
#475, #
477, patch from Andrew Franklin.
</li><li>
Issue 480: Bugfix post issue
475,
477, patch from Andrew Franklin.
</li><li>
Issue 481: Further extensions to PgServer to support better support PG JDBC, patch from Andrew Franklin.
</li><li>
Issue 481: Further extensions to PgServer to support better support PG JDBC, patch from Andrew Franklin.
</li><li>
Add support for spatial datatype GEOMETRY.
</li><li>
Add support for spatial datatype GEOMETRY.
</li><li>
Add support for in-memory spatial index.
</li><li>
Add support for in-memory spatial index.
...
@@ -50,7 +50,7 @@ Change Log
...
@@ -50,7 +50,7 @@ Change Log
to cope with databases with very high transaction rates.
to cope with databases with very high transaction rates.
</li><li>
Fix NPE when attempting to add foreign key reference to Table View.
</li><li>
Fix NPE when attempting to add foreign key reference to Table View.
</li><li>
Add sufficient ClientInfo support to our javax.sql.Connection implementation to make WebSphere happy.
</li><li>
Add sufficient ClientInfo support to our javax.sql.Connection implementation to make WebSphere happy.
</li><li>
Issue 482: class LobStorageBackend$LobInputStream does not override method int avalaible() from InputStream
</li><li>
Issue 482: class LobStorageBackend$LobInputStream does not override method int avalaible() from InputStream
.
</li></ul>
</li></ul>
<h2>
Version 1.3.172 (2013-05-25)
</h2>
<h2>
Version 1.3.172 (2013-05-25)
</h2>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论