Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
375e5e52
提交
375e5e52
authored
13 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Issue 378: when using views, the wrong values were bound to a parameter in some cases.
上级
b1c17566
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
27 行增加
和
12 行删除
+27
-12
ViewIndex.java
h2/src/main/org/h2/index/ViewIndex.java
+11
-12
TestCases.java
h2/src/test/org/h2/test/db/TestCases.java
+16
-0
没有找到文件。
h2/src/main/org/h2/index/ViewIndex.java
浏览文件 @
375e5e52
...
@@ -274,7 +274,7 @@ public class ViewIndex extends BaseIndex {
...
@@ -274,7 +274,7 @@ public class ViewIndex extends BaseIndex {
}
}
indexColumnCount
++;
indexColumnCount
++;
paramIndex
.
add
(
i
);
paramIndex
.
add
(
i
);
if
(
(
mask
&
IndexCondition
.
RANGE
)
==
IndexCondition
.
RANGE
)
{
if
(
Integer
.
bitCount
(
mask
)
>
1
)
{
// two parameters for range queries: >= x AND <= y
// two parameters for range queries: >= x AND <= y
paramIndex
.
add
(
i
);
paramIndex
.
add
(
i
);
}
}
...
@@ -289,17 +289,16 @@ public class ViewIndex extends BaseIndex {
...
@@ -289,17 +289,16 @@ public class ViewIndex extends BaseIndex {
Parameter
param
=
new
Parameter
(
firstIndexParam
+
i
);
Parameter
param
=
new
Parameter
(
firstIndexParam
+
i
);
q
.
addGlobalCondition
(
param
,
idx
,
Comparison
.
EQUAL_NULL_SAFE
);
q
.
addGlobalCondition
(
param
,
idx
,
Comparison
.
EQUAL_NULL_SAFE
);
i
++;
i
++;
}
else
{
}
if
((
mask
&
IndexCondition
.
START
)
==
IndexCondition
.
START
)
{
if
((
mask
&
IndexCondition
.
START
)
==
IndexCondition
.
START
)
{
Parameter
param
=
new
Parameter
(
firstIndexParam
+
i
);
Parameter
param
=
new
Parameter
(
firstIndexParam
+
i
);
q
.
addGlobalCondition
(
param
,
idx
,
Comparison
.
BIGGER_EQUAL
);
q
.
addGlobalCondition
(
param
,
idx
,
Comparison
.
BIGGER_EQUAL
);
i
++;
i
++;
}
}
if
((
mask
&
IndexCondition
.
END
)
==
IndexCondition
.
END
)
{
if
((
mask
&
IndexCondition
.
END
)
==
IndexCondition
.
END
)
{
Parameter
param
=
new
Parameter
(
firstIndexParam
+
i
);
Parameter
param
=
new
Parameter
(
firstIndexParam
+
i
);
q
.
addGlobalCondition
(
param
,
idx
,
Comparison
.
SMALLER_EQUAL
);
q
.
addGlobalCondition
(
param
,
idx
,
Comparison
.
SMALLER_EQUAL
);
i
++;
i
++;
}
}
}
}
}
columns
=
new
Column
[
columnList
.
size
()];
columns
=
new
Column
[
columnList
.
size
()];
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/db/TestCases.java
浏览文件 @
375e5e52
...
@@ -38,6 +38,7 @@ public class TestCases extends TestBase {
...
@@ -38,6 +38,7 @@ public class TestCases extends TestBase {
}
}
public
void
test
()
throws
Exception
{
public
void
test
()
throws
Exception
{
testViewParameters
();
testLargeKeys
();
testLargeKeys
();
testExtraSemicolonInDatabaseURL
();
testExtraSemicolonInDatabaseURL
();
testGroupSubquery
();
testGroupSubquery
();
...
@@ -98,6 +99,21 @@ public class TestCases extends TestBase {
...
@@ -98,6 +99,21 @@ public class TestCases extends TestBase {
deleteDb
(
"cases"
);
deleteDb
(
"cases"
);
}
}
private
void
testViewParameters
()
throws
SQLException
{
deleteDb
(
"cases"
);
Connection
conn
=
getConnection
(
"cases"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"create view test as select 0 value, 'x' name from dual"
);
PreparedStatement
prep
=
conn
.
prepareStatement
(
"select 1 from test where name=? and value=? and value<=?"
);
prep
.
setString
(
1
,
"x"
);
prep
.
setInt
(
2
,
0
);
prep
.
setInt
(
3
,
1
);
prep
.
executeQuery
();
conn
.
close
();
}
private
void
testLargeKeys
()
throws
SQLException
{
private
void
testLargeKeys
()
throws
SQLException
{
if
(
config
.
memory
)
{
if
(
config
.
memory
)
{
return
;
return
;
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论