Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
4a89379c
提交
4a89379c
authored
1月 06, 2011
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
c15ef014
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
1530 行增加
和
1459 行删除
+1530
-1459
changelog.html
h2/src/docsrc/html/changelog.html
+4
-2
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+511
-484
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+511
-484
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+494
-485
PageBtree.java
h2/src/main/org/h2/index/PageBtree.java
+4
-0
WebServer.java
h2/src/main/org/h2/server/web/WebServer.java
+1
-1
_text_cs.prop
h2/src/main/org/h2/server/web/res/_text_cs.prop
+1
-1
CacheLRU.java
h2/src/main/org/h2/util/CacheLRU.java
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+3
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
4a89379c
...
...
@@ -18,7 +18,9 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Server tool: the tcpShutdown feature now also stops other servers (web server and PostgreSQL server).
<ul><li>
Lob in database: after the process was killed while adding a lob,
inserting a lob could throw an exception (primary key violation in LOB_MAP).
</li><li>
Server tool: the tcpShutdown feature now also stops other servers (web server and PostgreSQL server).
</li><li>
Server tool: the tcpShutdown url must now end with the port if the port is used.
</li><li>
Server tool: when starting one service fails, the started services are now stopped.
</li><li>
Multi-version concurrency: SELECT ... FOR UPDATE threw a "concurrent update" exception immediately
...
...
@@ -106,7 +108,7 @@ when "LOBs in database" is enabled).
</li><li>
When concurrently preparing many statements with a subquery, in some cases the query didn't run
(Column "..." must be in the GROUP BY list).
</li><li>
CallableStatement: now the syntax "{? = CALL...}" is supported as well.
</li><li>
Issue
Lob in databases: two small BLOB or CLOB values were always considered equal.
</li><li>
Lob in databases: two small BLOB or CLOB values were always considered equal.
This also affected unique indexes.
</li><li>
The shutdown hook is (re-) enabled by default even for H2 version 1.3.x.
</li><li>
When creating a database from a recovery script, the same user can now be used
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
4a89379c
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
4a89379c
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
4a89379c
This source diff could not be displayed because it is too large. You can
view the blob
instead.
h2/src/main/org/h2/index/PageBtree.java
浏览文件 @
4a89379c
...
...
@@ -182,6 +182,10 @@ public abstract class PageBtree extends Page {
return
row
;
}
/**
* The memory usage of this page was changed. Propagate the change if
* needed.
*/
protected
void
memoryChange
()
{
// nothing to do
}
...
...
h2/src/main/org/h2/server/web/WebServer.java
浏览文件 @
4a89379c
...
...
@@ -103,7 +103,7 @@ public class WebServer implements Service {
// String s = IOUtils.readStringAndClose(new java.io.FileReader(
// // "src/main/org/h2/server/web/res/_text_cs.prop"), -1);
// "src/main/org/h2/res/_messages_cs.prop"), -1);
// System.out.println(StringUtils.javaEncode("
Čeština
"));
// System.out.println(StringUtils.javaEncode("
...
"));
// String[] list = Locale.getISOLanguages();
// for (int i = 0; i < list.length; i++) {
// System.out.print(list[i] + " ");
...
...
h2/src/main/org/h2/server/web/res/_text_cs.prop
浏览文件 @
4a89379c
...
...
@@ -85,7 +85,7 @@ resultEdit.cancel=Zrušit
resultEdit.delete=Smazat
resultEdit.edit=Upravit
resultEdit.editResult=Upravit
resultEdit.save=Uložit
resultEdit.save=Uložit
toolbar.all=Vše
toolbar.autoCommit=Automatické vkládání
toolbar.autoComplete=Automatické dokončování
...
...
h2/src/main/org/h2/util/CacheLRU.java
浏览文件 @
4a89379c
...
...
@@ -41,7 +41,7 @@ public class CacheLRU implements Cache {
*/
private
int
memory
;
private
CacheLRU
(
CacheWriter
writer
,
int
maxMemoryKb
)
{
CacheLRU
(
CacheWriter
writer
,
int
maxMemoryKb
)
{
this
.
setMaxMemory
(
maxMemoryKb
);
this
.
writer
=
writer
;
this
.
len
=
MathUtils
.
nextPowerOf2
(
maxMemory
/
64
);
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
4a89379c
...
...
@@ -665,4 +665,6 @@ mbeans unregisters subtracting multiplying dividing contended bindings
projection managing observer misuse windowed discriminator abort familiar rice
reachable mind develop disposition extras arithmetics readwrite syncable
requeried requery closable curr outdated market accurate borg theis welford
ooq exceeded eye prevention
ooq exceeded eye hannibal stels garringer
czech prevention
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论