Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
be8a9a43
提交
be8a9a43
authored
15 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ArrayIndexOutOfBoundsException when adding rows
上级
95c8936d
无相关合并请求
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
70 行增加
和
35 行删除
+70
-35
changelog.html
h2/src/docsrc/html/changelog.html
+3
-1
BtreeNode.java
h2/src/main/org/h2/index/BtreeNode.java
+2
-0
IntArray.java
h2/src/main/org/h2/util/IntArray.java
+8
-34
ObjectArray.java
h2/src/main/org/h2/util/ObjectArray.java
+10
-0
TestCases.java
h2/src/test/org/h2/test/db/TestCases.java
+18
-0
TestIndex.java
h2/src/test/org/h2/test/db/TestIndex.java
+29
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
be8a9a43
...
...
@@ -18,7 +18,9 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Microsoft Windows Vista: when using the the installer, Vista wrote
<ul><li>
In some situations, an ArrayIndexOutOfBoundsException was thrown when adding rows.
This was caused by a bug in the b-tree code.
</li><li>
Microsoft Windows Vista: when using the the installer, Vista wrote
"This program may not have installed correctly." This message should no longer appear
(in the h2.nsi file, the line 'RequestExecutionLevel highest' was added).
</li><li>
The Recover tool did not always work when the database contains
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/index/BtreeNode.java
浏览文件 @
be8a9a43
...
...
@@ -100,7 +100,9 @@ public class BtreeNode extends BtreePage {
ObjectArray
<
SearchRow
>
empty
=
ObjectArray
.
newInstance
();
BtreeLeaf
newLeaf
=
new
BtreeLeaf
(
index
,
empty
);
index
.
addPage
(
session
,
newLeaf
);
index
.
deletePage
(
session
,
this
);
pageChildren
.
add
(
newLeaf
.
getPos
());
index
.
updatePage
(
session
,
this
);
}
BtreePage
page
=
index
.
getPage
(
session
,
pageChildren
.
get
(
at
));
int
splitPoint
=
page
.
add
(
newRow
,
session
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/util/IntArray.java
浏览文件 @
be8a9a43
...
...
@@ -301,39 +301,13 @@ public class IntArray {
size
=
newSize
;
}
// ArrayList data = new ArrayList();
//
// public IntArray() {
// }
//
// public IntArray(int[] data) {
// for (int i = 0; i < data.length; i++) {
// this.data.add(new Integer(data[i]));
// }
// }
//
// public void add(int value) {
// this.data.add(new Integer(value));
// }
//
// public int get(int i) {
// return ((Integer) data.get(i)).intValue();
// }
//
// public void remove(int i) {
// data.remove(i);
// }
//
// public void add(int i, int value) {
// data.add(i, new Integer(value));
// }
//
// public void set(int i, int value) {
// data.set(i, new Integer(value));
// }
//
// public int size() {
// return data.size();
// }
public
String
toString
()
{
StatementBuilder
buff
=
new
StatementBuilder
(
"{"
);
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
buff
.
appendExceptFirst
(
", "
);
buff
.
append
(
data
[
i
]);
}
return
buff
.
append
(
'}'
).
toString
();
}
}
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/util/ObjectArray.java
浏览文件 @
be8a9a43
...
...
@@ -353,4 +353,14 @@ public class ObjectArray<T> implements Iterable<T> {
// }
// }
public
String
toString
()
{
StatementBuilder
buff
=
new
StatementBuilder
(
"{"
);
for
(
int
i
=
0
;
i
<
size
;
i
++)
{
buff
.
appendExceptFirst
(
", "
);
T
t
=
get
(
i
);
buff
.
append
(
t
==
null
?
""
:
t
.
toString
());
}
return
buff
.
append
(
'}'
).
toString
();
}
}
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/db/TestCases.java
浏览文件 @
be8a9a43
...
...
@@ -46,6 +46,7 @@ public class TestCases extends TestBase {
if
(
config
.
memory
||
config
.
logMode
==
0
)
{
return
;
}
testEmptyBtreeIndex
();
testReservedKeywordReconnect
();
testSpecialSQL
();
testUpperCaseLowerCaseDatabase
();
...
...
@@ -70,6 +71,23 @@ public class TestCases extends TestBase {
deleteDb
(
"cases"
);
}
private
void
testEmptyBtreeIndex
()
throws
SQLException
{
deleteDb
(
"cases"
);
Connection
conn
;
conn
=
getConnection
(
"cases"
);
conn
.
createStatement
().
execute
(
"CREATE TABLE test(id int PRIMARY KEY);"
);
conn
.
createStatement
().
execute
(
"INSERT INTO test SELECT X FROM SYSTEM_RANGE(1, 77)"
);
conn
.
createStatement
().
execute
(
"DELETE from test"
);
conn
.
close
();
conn
=
getConnection
(
"cases"
);
conn
.
createStatement
().
execute
(
"INSERT INTO test (id) VALUES (1)"
);
conn
.
close
();
conn
=
getConnection
(
"cases"
);
conn
.
createStatement
().
execute
(
"DELETE from test"
);
conn
.
createStatement
().
execute
(
"drop table test"
);
conn
.
close
();
}
private
void
testJoinWithView
()
throws
SQLException
{
deleteDb
(
"cases"
);
Connection
conn
=
getConnection
(
"cases"
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/db/TestIndex.java
浏览文件 @
be8a9a43
...
...
@@ -35,6 +35,8 @@ public class TestIndex extends TestBase {
}
public
void
test
()
throws
SQLException
{
deleteDb
(
"index"
);
testRandomized
();
testDescIndex
();
testHashIndex
();
...
...
@@ -81,6 +83,33 @@ public class TestIndex extends TestBase {
deleteDb
(
"index"
);
}
private
void
testRandomized
()
throws
SQLException
{
boolean
reopen
=
!
config
.
memory
;
Random
random
=
new
Random
(
1
);
reconnect
();
stat
.
execute
(
"CREATE TABLE TEST(ID identity)"
);
int
len
=
getSize
(
100
,
1000
);
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
switch
(
random
.
nextInt
(
4
))
{
case
0
:
if
(
reopen
)
{
reconnect
();
}
break
;
case
1
:
stat
.
execute
(
"insert into test(id) values(null)"
);
break
;
case
2
:
stat
.
execute
(
"delete from test"
);
break
;
case
3
:
stat
.
execute
(
"insert into test select null from system_range(1, 100)"
);
break
;
}
}
stat
.
execute
(
"drop table test"
);
}
private
void
testHashIndex
()
throws
SQLException
{
reconnect
();
stat
.
execute
(
"create table testA(id int primary key, name varchar)"
);
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论