Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
88741eb5
提交
88741eb5
authored
6 年前
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use TreeSet in IndexCondition and remove IndexCursor.inResultTested
上级
2cdafd3a
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
44 行增加
和
14 行删除
+44
-14
Query.java
h2/src/main/org/h2/command/dml/Query.java
+9
-0
IndexCondition.java
h2/src/main/org/h2/index/IndexCondition.java
+4
-4
IndexCursor.java
h2/src/main/org/h2/index/IndexCursor.java
+2
-10
decimal.sql
h2/src/test/org/h2/test/scripts/datatypes/decimal.sql
+29
-0
没有找到文件。
h2/src/main/org/h2/command/dml/Query.java
浏览文件 @
88741eb5
...
@@ -319,6 +319,15 @@ public abstract class Query extends Prepared {
...
@@ -319,6 +319,15 @@ public abstract class Query extends Prepared {
return
distinct
;
return
distinct
;
}
}
/**
* Returns whether results support random access.
*
* @return whether results support random access
*/
public
boolean
isRandomAccessResult
()
{
return
randomAccessResult
;
}
/**
/**
* Whether results need to support random access.
* Whether results need to support random access.
*
*
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/index/IndexCondition.java
浏览文件 @
88741eb5
...
@@ -7,8 +7,8 @@ package org.h2.index;
...
@@ -7,8 +7,8 @@ package org.h2.index;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.HashSet
;
import
java.util.List
;
import
java.util.List
;
import
java.util.TreeSet
;
import
org.h2.command.dml.Query
;
import
org.h2.command.dml.Query
;
import
org.h2.engine.Session
;
import
org.h2.engine.Session
;
import
org.h2.expression.Expression
;
import
org.h2.expression.Expression
;
...
@@ -123,8 +123,8 @@ public class IndexCondition {
...
@@ -123,8 +123,8 @@ public class IndexCondition {
* @return the index condition
* @return the index condition
*/
*/
public
static
IndexCondition
getInQuery
(
ExpressionColumn
column
,
Query
query
)
{
public
static
IndexCondition
getInQuery
(
ExpressionColumn
column
,
Query
query
)
{
IndexCondition
cond
=
new
IndexCondition
(
Comparison
.
IN_QUERY
,
column
,
assert
query
.
isRandomAccessResult
();
null
);
IndexCondition
cond
=
new
IndexCondition
(
Comparison
.
IN_QUERY
,
column
,
null
);
cond
.
expressionQuery
=
query
;
cond
.
expressionQuery
=
query
;
return
cond
;
return
cond
;
}
}
...
@@ -147,7 +147,7 @@ public class IndexCondition {
...
@@ -147,7 +147,7 @@ public class IndexCondition {
* @return the value list
* @return the value list
*/
*/
public
Value
[]
getCurrentValueList
(
Session
session
)
{
public
Value
[]
getCurrentValueList
(
Session
session
)
{
HashSet
<
Value
>
valueSet
=
new
HashSet
<>(
);
TreeSet
<
Value
>
valueSet
=
new
TreeSet
<>(
session
.
getDatabase
().
getCompareMode
()
);
for
(
Expression
e
:
expressionList
)
{
for
(
Expression
e
:
expressionList
)
{
Value
v
=
e
.
getValue
(
session
);
Value
v
=
e
.
getValue
(
session
);
v
=
column
.
convert
(
v
);
v
=
column
.
convert
(
v
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/index/IndexCursor.java
浏览文件 @
88741eb5
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
package
org
.
h2
.
index
;
package
org
.
h2
.
index
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.HashSet
;
import
org.h2.engine.Session
;
import
org.h2.engine.Session
;
import
org.h2.expression.condition.Comparison
;
import
org.h2.expression.condition.Comparison
;
...
@@ -45,7 +44,6 @@ public class IndexCursor implements Cursor {
...
@@ -45,7 +44,6 @@ public class IndexCursor implements Cursor {
private
int
inListIndex
;
private
int
inListIndex
;
private
Value
[]
inList
;
private
Value
[]
inList
;
private
ResultInterface
inResult
;
private
ResultInterface
inResult
;
private
HashSet
<
Value
>
inResultTested
;
public
IndexCursor
(
TableFilter
filter
)
{
public
IndexCursor
(
TableFilter
filter
)
{
this
.
tableFilter
=
filter
;
this
.
tableFilter
=
filter
;
...
@@ -79,7 +77,6 @@ public class IndexCursor implements Cursor {
...
@@ -79,7 +77,6 @@ public class IndexCursor implements Cursor {
inList
=
null
;
inList
=
null
;
inColumn
=
null
;
inColumn
=
null
;
inResult
=
null
;
inResult
=
null
;
inResultTested
=
null
;
intersects
=
null
;
intersects
=
null
;
for
(
IndexCondition
condition
:
indexConditions
)
{
for
(
IndexCondition
condition
:
indexConditions
)
{
if
(
condition
.
isAlwaysFalse
())
{
if
(
condition
.
isAlwaysFalse
())
{
...
@@ -311,13 +308,8 @@ public class IndexCursor implements Cursor {
...
@@ -311,13 +308,8 @@ public class IndexCursor implements Cursor {
while
(
inResult
.
next
())
{
while
(
inResult
.
next
())
{
Value
v
=
inResult
.
currentRow
()[
0
];
Value
v
=
inResult
.
currentRow
()[
0
];
if
(
v
!=
ValueNull
.
INSTANCE
)
{
if
(
v
!=
ValueNull
.
INSTANCE
)
{
if
(
inResultTested
==
null
)
{
find
(
v
);
inResultTested
=
new
HashSet
<>();
break
;
}
if
(
inResultTested
.
add
(
v
))
{
find
(
v
);
break
;
}
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/scripts/datatypes/decimal.sql
浏览文件 @
88741eb5
...
@@ -29,3 +29,32 @@ SELECT DISTINCT * FROM TEST;
...
@@ -29,3 +29,32 @@ SELECT DISTINCT * FROM TEST;
DROP
TABLE
TEST
;
DROP
TABLE
TEST
;
>
ok
>
ok
CREATE
TABLE
TEST
(
N
NUMERIC
)
AS
VALUES
(
0
),
(
0
.
0
),
(
2
),
(
NULL
);
>
ok
CREATE
INDEX
TEST_IDX
ON
TEST
(
N
);
>
ok
SELECT
N
FROM
TEST
WHERE
N
IN
(
0
.
000
,
0
.
00
,
1
.
0
);
>
N
>
---
>
0
>
0
.
0
>
rows
:
2
SELECT
N
FROM
TEST
WHERE
N
IN
(
SELECT
DISTINCT
ON
(
B
)
A
FROM
VALUES
(
0
.
000
,
1
),
(
0
.
00
,
2
),
(
1
.
0
,
3
)
T
(
A
,
B
));
>
N
>
---
>
0
>
0
.
0
>
rows
:
2
DROP
INDEX
TEST_IDX
;
>
ok
CREATE
UNIQUE
INDEX
TEST_IDX
ON
TEST
(
N
);
>
exception
DUPLICATE_KEY_1
DROP
TABLE
TEST
;
>
ok
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论