Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d83c77cd
提交
d83c77cd
authored
7月 04, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
New experimental page store.
上级
589f38be
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
27 行增加
和
4 行删除
+27
-4
PageStore.java
h2/src/main/org/h2/store/PageStore.java
+21
-3
TestBase.java
h2/src/test/org/h2/test/TestBase.java
+6
-1
没有找到文件。
h2/src/main/org/h2/store/PageStore.java
浏览文件 @
d83c77cd
...
...
@@ -458,17 +458,26 @@ public class PageStore implements CacheWriter {
* Close the file without writing anything.
*/
public
void
close
()
throws
SQLException
{
Exception
closeException
=
null
;
try
{
trace
.
debug
(
"close"
);
if
(
log
!=
null
)
{
log
.
close
();
}
}
catch
(
SQLException
e
)
{
closeException
=
e
;
}
try
{
if
(
file
!=
null
)
{
file
.
close
();
}
file
=
null
;
}
catch
(
IOException
e
)
{
throw
Message
.
convertIOException
(
e
,
"close"
);
closeException
=
e
;
}
log
=
null
;
file
=
null
;
if
(
closeException
!=
null
)
{
throw
Message
.
convert
(
closeException
);
}
}
...
...
@@ -509,6 +518,7 @@ public class PageStore implements CacheWriter {
trace
.
debug
(
"updateRecord "
+
record
.
toString
());
}
}
checkOpen
();
database
.
checkWritingAllowed
();
record
.
setChanged
(
true
);
int
pos
=
record
.
getPos
();
...
...
@@ -518,7 +528,7 @@ public class PageStore implements CacheWriter {
if
(
old
==
null
)
{
old
=
readPage
(
pos
);
}
log
.
addUndo
(
record
.
getPos
()
,
old
);
log
.
addUndo
(
pos
,
old
);
}
}
}
...
...
@@ -768,6 +778,7 @@ public class PageStore implements CacheWriter {
*/
public
void
commit
(
Session
session
)
throws
SQLException
{
synchronized
(
database
)
{
checkOpen
();
log
.
commit
(
session
.
getId
());
if
(
log
.
getSize
()
>
maxLogSize
)
{
checkpoint
();
...
...
@@ -1033,4 +1044,11 @@ public class PageStore implements CacheWriter {
return
this
.
recoveryRunning
;
}
private
void
checkOpen
()
throws
SQLException
{
if
(
file
==
null
)
{
throw
Message
.
getSQLException
(
ErrorCode
.
SIMULATED_POWER_OFF
);
}
}
}
h2/src/test/org/h2/test/TestBase.java
浏览文件 @
d83c77cd
...
...
@@ -438,7 +438,7 @@ public abstract class TestBase {
* @param name the database name
*/
protected
void
deleteDb
(
String
name
)
throws
SQLException
{
DeleteDbFiles
.
execute
(
baseDir
,
name
,
tru
e
);
deleteDb
(
baseDir
,
nam
e
);
}
/**
...
...
@@ -449,6 +449,11 @@ public abstract class TestBase {
*/
protected
void
deleteDb
(
String
dir
,
String
name
)
throws
SQLException
{
DeleteDbFiles
.
execute
(
dir
,
name
,
true
);
// ArrayList<String> list;
// list = FileLister.getDatabaseFiles(baseDir, name, true);
// if (list.size() > 0) {
// System.out.println("Not deleted: " + list);
// }
}
/**
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论