Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
fd7ad571
提交
fd7ad571
authored
12 年前
作者:
noelgrandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix some calls to equals that were passing the wrong type (found by FindBugs)
上级
bd4e2665
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
4 行增加
和
4 行删除
+4
-4
TestDateStorage.java
h2/src/test/org/h2/test/db/TestDateStorage.java
+1
-1
TestDate.java
h2/src/test/org/h2/test/unit/TestDate.java
+1
-1
ChangeCursor.java
h2/src/tools/org/h2/dev/store/btree/ChangeCursor.java
+2
-2
没有找到文件。
h2/src/test/org/h2/test/db/TestDateStorage.java
浏览文件 @
fd7ad571
...
@@ -76,7 +76,7 @@ public class TestDateStorage extends TestBase {
...
@@ -76,7 +76,7 @@ public class TestDateStorage extends TestBase {
printTime
(
"inserted"
);
printTime
(
"inserted"
);
for
(
TimeZone
target
:
distinct
)
{
for
(
TimeZone
target
:
distinct
)
{
println
(
"select from "
+
target
.
getID
());
println
(
"select from "
+
target
.
getID
());
if
(
"Pacific/Kiritimati"
.
equals
(
target
))
{
if
(
"Pacific/Kiritimati"
.
equals
(
target
.
getID
()
))
{
// there is a problem with this time zone, but it seems
// there is a problem with this time zone, but it seems
// unrelated to this database (possibly wrong timezone
// unrelated to this database (possibly wrong timezone
// information?)
// information?)
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/unit/TestDate.java
浏览文件 @
fd7ad571
...
@@ -417,7 +417,7 @@ public class TestDate extends TestBase {
...
@@ -417,7 +417,7 @@ public class TestDate extends TestBase {
d
.
writeValue
(
ValueNull
.
INSTANCE
);
d
.
writeValue
(
ValueNull
.
INSTANCE
);
d
.
reset
();
d
.
reset
();
for
(
TimeZone
target
:
distinct
)
{
for
(
TimeZone
target
:
distinct
)
{
if
(
"Pacific/Kiritimati"
.
equals
(
target
))
{
if
(
"Pacific/Kiritimati"
.
equals
(
target
.
getID
()
))
{
// there is a problem with this time zone, but it seems
// there is a problem with this time zone, but it seems
// unrelated to this database (possibly wrong timezone
// unrelated to this database (possibly wrong timezone
// information?)
// information?)
...
...
This diff is collapsed.
Click to expand it.
h2/src/tools/org/h2/dev/store/btree/ChangeCursor.java
浏览文件 @
fd7ad571
...
@@ -104,7 +104,7 @@ public class ChangeCursor<K, V> implements Iterator<K> {
...
@@ -104,7 +104,7 @@ public class ChangeCursor<K, V> implements Iterator<K> {
break
;
break
;
}
}
pos2
=
pos2
.
parent
;
pos2
=
pos2
.
parent
;
if
(
pos2
==
null
||
!
pos1
.
page
.
equals
(
pos2
.
page
.
getPos
()
))
{
if
(
pos2
==
null
||
!
pos1
.
page
.
equals
(
pos2
.
page
))
{
if
(
pos1
.
index
+
1
<
map
.
getChildPageCount
(
pos1
.
page
))
{
if
(
pos1
.
index
+
1
<
map
.
getChildPageCount
(
pos1
.
page
))
{
pos1
=
new
CursorPos
(
pos1
.
page
.
getChildPage
(++
pos1
.
index
),
0
,
pos1
);
pos1
=
new
CursorPos
(
pos1
.
page
.
getChildPage
(++
pos1
.
index
),
0
,
pos1
);
pos1
=
min
(
pos1
);
pos1
=
min
(
pos1
);
...
@@ -147,7 +147,7 @@ public class ChangeCursor<K, V> implements Iterator<K> {
...
@@ -147,7 +147,7 @@ public class ChangeCursor<K, V> implements Iterator<K> {
break
;
break
;
}
}
pos1
=
pos1
.
parent
;
pos1
=
pos1
.
parent
;
if
(
pos1
==
null
||
!
pos2
.
page
.
equals
(
pos1
.
page
.
getPos
()
))
{
if
(
pos1
==
null
||
!
pos2
.
page
.
equals
(
pos1
.
page
))
{
if
(
pos2
.
index
+
1
<
map
.
getChildPageCount
(
pos2
.
page
))
{
if
(
pos2
.
index
+
1
<
map
.
getChildPageCount
(
pos2
.
page
))
{
pos2
=
new
CursorPos
(
pos2
.
page
.
getChildPage
(++
pos2
.
index
),
0
,
pos2
);
pos2
=
new
CursorPos
(
pos2
.
page
.
getChildPage
(++
pos2
.
index
),
0
,
pos2
);
pos2
=
min
(
pos2
);
pos2
=
min
(
pos2
);
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论