Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
5dbcd675
提交
5dbcd675
authored
8月 04, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Various bugfixes and improvements in the page store mechanism (still experimental).
上级
234f2c33
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
27 行增加
和
10 行删除
+27
-10
PageBtreeNode.java
h2/src/main/org/h2/index/PageBtreeNode.java
+1
-0
PageInputStream.java
h2/src/main/org/h2/store/PageInputStream.java
+9
-10
TestPageStore.java
h2/src/test/org/h2/test/unit/TestPageStore.java
+17
-0
没有找到文件。
h2/src/main/org/h2/index/PageBtreeNode.java
浏览文件 @
5dbcd675
...
@@ -148,6 +148,7 @@ class PageBtreeNode extends PageBtree {
...
@@ -148,6 +148,7 @@ class PageBtreeNode extends PageBtree {
return
splitPoint2
;
return
splitPoint2
;
}
}
PageBtree
page2
=
page
.
split
(
splitPoint
);
PageBtree
page2
=
page
.
split
(
splitPoint
);
readAllRows
();
addChild
(
x
,
page2
.
getPos
(),
pivot
);
addChild
(
x
,
page2
.
getPos
(),
pivot
);
index
.
getPageStore
().
updateRecord
(
page
,
true
,
page
.
data
);
index
.
getPageStore
().
updateRecord
(
page
,
true
,
page
.
data
);
index
.
getPageStore
().
updateRecord
(
page2
,
true
,
page2
.
data
);
index
.
getPageStore
().
updateRecord
(
page2
,
true
,
page2
.
data
);
...
...
h2/src/main/org/h2/store/PageInputStream.java
浏览文件 @
5dbcd675
...
@@ -83,22 +83,21 @@ public class PageInputStream extends InputStream {
...
@@ -83,22 +83,21 @@ public class PageInputStream extends InputStream {
endOfFile
=
true
;
endOfFile
=
true
;
return
;
return
;
}
}
if
(
trunk
==
null
)
{
trunk
=
new
PageStreamTrunk
(
store
,
trunkNext
);
trunk
.
read
();
trunkNext
=
trunk
.
getNextTrunk
();
}
int
next
;
int
next
;
while
(
true
)
{
while
(
true
)
{
next
=
trunk
.
getNextPageData
();
if
(
trunk
==
null
)
{
if
(
dataPage
==
-
1
||
dataPage
==
next
)
{
if
(
next
!=
-
1
)
{
break
;
}
trunk
=
new
PageStreamTrunk
(
store
,
trunkNext
);
trunk
=
new
PageStreamTrunk
(
store
,
trunkNext
);
trunk
.
read
();
trunk
.
read
();
trunkNext
=
trunk
.
getNextTrunk
();
trunkNext
=
trunk
.
getNextTrunk
();
}
}
if
(
trunk
!=
null
)
{
next
=
trunk
.
getNextPageData
();
if
(
next
==
-
1
)
{
trunk
=
null
;
}
else
if
(
dataPage
==
-
1
||
dataPage
==
next
)
{
break
;
}
}
}
}
if
(
trace
.
isDebugEnabled
())
{
if
(
trace
.
isDebugEnabled
())
{
trace
.
debug
(
"pageIn.readPage "
+
next
);
trace
.
debug
(
"pageIn.readPage "
+
next
);
...
...
h2/src/test/org/h2/test/unit/TestPageStore.java
浏览文件 @
5dbcd675
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
package
org
.
h2
.
test
.
unit
;
package
org
.
h2
.
test
.
unit
;
import
java.sql.Connection
;
import
java.sql.Connection
;
import
java.sql.PreparedStatement
;
import
java.sql.ResultSet
;
import
java.sql.ResultSet
;
import
java.sql.SQLException
;
import
java.sql.SQLException
;
import
java.sql.Statement
;
import
java.sql.Statement
;
...
@@ -31,11 +32,27 @@ public class TestPageStore extends TestBase {
...
@@ -31,11 +32,27 @@ public class TestPageStore extends TestBase {
}
}
public
void
test
()
throws
Exception
{
public
void
test
()
throws
Exception
{
testLargeIndex
();
testUniqueIndex
();
testUniqueIndex
();
testCreateIndexLater
();
testCreateIndexLater
();
testFuzzOperations
();
testFuzzOperations
();
}
}
private
void
testLargeIndex
()
throws
SQLException
{
if
(
config
.
memory
)
{
return
;
}
deleteDb
(
"pageStore"
);
Connection
conn
=
getConnection
(
"pageStore"
);
conn
.
createStatement
().
execute
(
"create table test(id varchar primary key, d varchar)"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"insert into test values(?, space(500))"
);
for
(
int
i
=
0
;
i
<
20000
;
i
++)
{
prep
.
setString
(
1
,
""
+
i
);
prep
.
executeUpdate
();
}
conn
.
close
();
}
private
void
testUniqueIndex
()
throws
SQLException
{
private
void
testUniqueIndex
()
throws
SQLException
{
if
(
config
.
memory
)
{
if
(
config
.
memory
)
{
return
;
return
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论