Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
40b36ef5
提交
40b36ef5
authored
1月 16, 2015
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Prepare release
上级
be140e21
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
634 行增加
和
968 行删除
+634
-968
changelog.html
h2/src/docsrc/html/changelog.html
+4
-79
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+210
-321
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+210
-321
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+207
-244
Constants.java
h2/src/main/org/h2/engine/Constants.java
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+1
-0
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+0
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
40b36ef5
...
...
@@ -17,6 +17,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.4.185 Beta (2015-01-16)
</h2>
<ul><li>
In version 1.4.184, "group by" ignored the table name,
and could pick a select column by mistake.
Example: select 0 as x from system_range(1, 2) d group by d.x;
...
...
@@ -385,84 +389,5 @@ Change Log
</li><li>
Fix bug in DROP ALL OBJECTS when dealing with inter-schema dependencies.
</li></ul>
<h2>
Version 1.3.174 (2013-10-19)
</h2>
<ul><li>
LIRS cache: bugfix for caches that only contain non-resident entries.
</li><li>
For in-memory databases, queries with a "group by" column that
is also a hash index threw a RuntimeException.
</li><li>
Improved error message for some syntax errors.
</li><li>
File system abstraction: if used directly, some file systems did not work correctly
with spliced byte buffers (the database engine doesn't use those).
</li><li>
To use the MVStore storage engine (which is still work in progress), append
";mv_store=true" to the database URL. Using the MVTableEngine when creating the table
is no longer recommended.
</li><li>
To compile user defined functions, the javax.tools.JavaCompiler is now used if available,
and no temporary files are created. This should solve problems when
multiple H2 database concurrently compile the same user defined functions.
To disable, system the system property "h2.javaSystemCompiler" to false.
</li><li>
Concurrently creating function aliases in different databases
could result in the exception "javac: file not found".
</li><li>
The function "regexp_replace" threw the wrong kind of exception if the
replacement string was invalid.
</li><li>
A checkpoint is now done every MAX_LOG_SIZE / 2 instead of every
MAX_LOG_SIZE, so that the transaction log doesn't grow as large.
</li><li>
MVStore table engine: new setting "retention_time" to configure the
time to retain old data. The default is 45 seconds.
</li><li>
The method TableEngine.createTable() now returns a Table object.
</li><li>
For read-only databases, for the trace level "debug",
the trace info is written to the temp directory.
</li><li>
Closing the file lock will now wait until the background thread is stopped.
</li><li>
In version 1.3.172, a performance regression was introduced when
fixing the issue 389 (when there is a multi-column primary key,
H2 does not seem to always pick the right index). This was related to
boosting an index that matches the "order by" column list
(the wrong index was used in some cases).
</li><li>
Improved spatial index and data type.
</li><li>
Issue 467: OSGi Class Loader (ability to create reference to class
in other ClassLoader, for example in another OSGi bundle).
</li><li>
Queries "group by" that contain a subquery with an aggregate function
returned the wrong result in some cases.
</li><li>
Fix bug in unique and non-unique hash indexes which manifested as incorrect results
when the search key was a different cardinal type from the table index key.
e.g. where the one was INT and the other was LONG
</li><li>
Bug: Changes to the database structure did not result
in the Session query cache being invalidated.
</li><li>
New feature from Davide Cavestro - allow using custom Java object serialization
engines on a per-DB basis.
</li><li>
When running the Recover tool on very large (
>
6G) databases, some statistics were reported with
negative numbers.
</li><li>
Add a CONTAINS_UNCOMMITTED column to the SESSIONS metadata table, to allow detecting when rogue
sessions are creating large transactions.
</li><li>
Some small fixes to the GEOMETRY support, patches by Nicolas Fortin.
</li><li>
The BNF tool and the autocomplete feature are exported in OSGi,
which makes it possible for smart editors to do autocomplete. Patch from Nicolas Fortin.
</li><li>
Fix DROP ALL OBJECTS and DROP SCHEMA in the presence of tables with computed column dependencies.
</li><li>
Session-temporary LOB's could sometimes accumulate, increasing the size of the DB file until shutdown.
Now they are cleared out at every commit.
</li><li>
There was a bug where a hash index with more than one column would be silently converted to a regular index.
It will now throw an exception.
</li><li>
Query Statistics: new feature which stores the newest 100 SQL queries executed and their performance data.
Useful for tracking down badly performing queries.
</li><li>
Fix an LOB deadlock between reading and updating LOB columns.
</li><li>
Support the JDBC DatabaseMetaData#getClientInfoProperties() method, in the sense of returning an empty result,
in order to make WebSphere happy.
</li><li>
Make Server#openBrowser respect the $BROWSER environment variable. Add "chromium" to the list of browsers tried.
Patch from Felix Kaiser.
</li><li>
Fix to org.h2.util.ScriptReader when handling unclosed block comments.
</li><li>
Make org.h2.util.ScriptReader throw a better exception when handling broken scripts which generate
extremely large statements.
</li><li>
Fix bug with ALLOW_LITERALS=NONE,
where the periodic analyze table on insert would throw an exception.
A similar problem was fixed in the Console tool.
</li><li>
Issue 510: Make org.h2.bnf public for consumption by external projects, patch by Nicolas Fortin
</li><li>
Issue 509: Important fix on ValueGeometry, patch by Nicolas Fortin (with some tweaking)
Make ValueGeometry#getDimensionCount more reliable.
Add unit test to check for illegal ValueGeometry comparison
Add unit test for conversion of Geometry object into Object
Add optional export to MANIFEST.MF for JTS Geometry classes
Validate that geometry values can be represented in WKB.
</li><li>
Issue 506: RFE: Include Thread.getName() in case of a deadlock
</li><li>
Adding support for "GRANT ALTER ANY SCHEMA TO
<
user
>
", patch by John Yates
</li></ul>
<!-- [close] { -->
</div></td></tr></table>
<!-- } --><!-- analytics -->
</body></html>
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
40b36ef5
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
40b36ef5
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
40b36ef5
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
40b36ef5
...
...
@@ -16,7 +16,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"201
4-12-19
"
;
public
static
final
String
BUILD_DATE
=
"201
5-01-16
"
;
/**
* The build date of the last stable release.
...
...
@@ -26,7 +26,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
18
4
;
public
static
final
int
BUILD_ID
=
18
5
;
/**
* The build id of the last stable release.
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
40b36ef5
...
...
@@ -7,6 +7,7 @@
CREATE
TABLE
VERSION
(
ID
INT
PRIMARY
KEY
,
VERSION
VARCHAR
,
CREATED
VARCHAR
);
INSERT
INTO
VERSION
VALUES
(
135
,
'1.4.185'
,
'2015-01-16'
),
(
134
,
'1.4.184'
,
'2014-12-19'
),
(
133
,
'1.4.183'
,
'2014-12-13'
),
(
132
,
'1.4.182'
,
'2014-10-17'
),
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
40b36ef5
...
...
@@ -768,5 +768,4 @@ jech ladislav cognitect sergey thompson evdokimov arykov mfulton
dimitrijs fedotovs kingdom manley xso latvia ontwikkeling reeve
extendable republic uniquely datasources accidentally recursing respecting
young sweep clearer accounting disappeared donor oome ken jorissen nesterov
degradation
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论