Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8751e5b3
提交
8751e5b3
authored
11月 07, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Page store: updating large rows could corrupt the database.
上级
58aa12ea
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
7 行删除
+20
-7
PageDataLeaf.java
h2/src/main/org/h2/index/PageDataLeaf.java
+13
-4
PageDataOverflow.java
h2/src/main/org/h2/index/PageDataOverflow.java
+7
-3
没有找到文件。
h2/src/main/org/h2/index/PageDataLeaf.java
浏览文件 @
8751e5b3
...
...
@@ -262,6 +262,7 @@ public class PageDataLeaf extends PageData {
if
(
entryCount
<
0
)
{
Message
.
throwInternalError
();
}
freeChildren
();
firstOverflowPageId
=
0
;
overflowRowSize
=
0
;
rowRef
=
null
;
...
...
@@ -274,6 +275,8 @@ public class PageDataLeaf extends PageData {
System
.
arraycopy
(
rows
,
0
,
newRows
,
0
,
i
);
int
startNext
=
i
>
0
?
offsets
[
i
-
1
]
:
index
.
getPageStore
().
getPageSize
();
int
rowLength
=
startNext
-
offsets
[
i
];
int
clearStart
=
offsets
[
entryCount
];
Arrays
.
fill
(
data
.
getBytes
(),
clearStart
,
clearStart
+
rowLength
,
(
byte
)
0
);
for
(
int
j
=
i
;
j
<
entryCount
;
j
++)
{
newOffsets
[
j
]
=
offsets
[
j
+
1
]
+
rowLength
;
}
...
...
@@ -461,9 +464,6 @@ public class PageDataLeaf extends PageData {
if
(
written
)
{
return
;
}
if
(
SysProperties
.
CHECK
&&
firstOverflowPageId
!=
0
&&
rows
[
0
]
==
null
)
{
Message
.
throwInternalError
(
toString
());
}
readAllRows
();
writeHead
();
if
(
firstOverflowPageId
!=
0
)
{
...
...
@@ -520,7 +520,16 @@ public class PageDataLeaf extends PageData {
}
}
void
setOverflow
(
int
overflow
)
throws
SQLException
{
/**
* Set the overflow page id.
*
* @param old the old overflow page id
* @param overflow the new overflow page id
*/
void
setOverflow
(
int
old
,
int
overflow
)
throws
SQLException
{
if
(
SysProperties
.
CHECK
&&
old
!=
firstOverflowPageId
)
{
Message
.
throwInternalError
(
"move "
+
this
+
" "
+
firstOverflowPageId
);
}
index
.
getPageStore
().
logUndo
(
this
,
data
);
firstOverflowPageId
=
overflow
;
if
(
written
)
{
...
...
h2/src/main/org/h2/index/PageDataOverflow.java
浏览文件 @
8751e5b3
...
...
@@ -8,6 +8,7 @@ package org.h2.index;
import
java.sql.SQLException
;
import
org.h2.constant.ErrorCode
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Session
;
import
org.h2.message.Message
;
import
org.h2.store.Data
;
...
...
@@ -228,16 +229,19 @@ public class PageDataOverflow extends Page {
}
if
(
p
instanceof
PageDataOverflow
)
{
PageDataOverflow
p1
=
(
PageDataOverflow
)
p
;
p1
.
setNext
(
newPos
);
p1
.
setNext
(
getPos
(),
newPos
);
}
else
{
PageDataLeaf
p1
=
(
PageDataLeaf
)
p
;
p1
.
setOverflow
(
newPos
);
p1
.
setOverflow
(
getPos
(),
newPos
);
}
store
.
update
(
p
);
store
.
free
(
getPos
(),
true
);
}
private
void
setNext
(
int
nextPage
)
throws
SQLException
{
private
void
setNext
(
int
old
,
int
nextPage
)
throws
SQLException
{
if
(
SysProperties
.
CHECK
&&
old
!=
this
.
nextPage
)
{
Message
.
throwInternalError
(
"move "
+
this
+
" "
+
nextPage
);
}
store
.
logUndo
(
this
,
data
);
this
.
nextPage
=
nextPage
;
data
.
setInt
(
START_NEXT_OVERFLOW
,
nextPage
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论