Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
f68ac3f3
Unverified
提交
f68ac3f3
authored
7月 31, 2018
作者:
Andrei Tokar
提交者:
GitHub
7月 31, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1337 from h2database/value-comparison
Streamline Value comparison
上级
4ce2a984
d198e275
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
39 行增加
和
44 行删除
+39
-44
Comparison.java
h2/src/main/org/h2/expression/Comparison.java
+13
-9
ValueDataType.java
h2/src/main/org/h2/mvstore/db/ValueDataType.java
+13
-19
Table.java
h2/src/main/org/h2/table/Table.java
+13
-9
Value.java
h2/src/main/org/h2/value/Value.java
+0
-7
没有找到文件。
h2/src/main/org/h2/expression/Comparison.java
浏览文件 @
f68ac3f3
...
...
@@ -271,7 +271,10 @@ public class Comparison extends Condition {
return
ValueNull
.
INSTANCE
;
}
}
int
dataType
=
Value
.
getHigherOrder
(
left
.
getType
(),
right
.
getType
());
int
leftType
=
left
.
getType
();
int
rightType
=
right
.
getType
();
if
(
leftType
!=
rightType
||
leftType
==
Value
.
ENUM
)
{
int
dataType
=
Value
.
getHigherOrder
(
leftType
,
rightType
);
if
(
dataType
==
Value
.
ENUM
)
{
String
[]
enumerators
=
ValueEnum
.
getEnumeratorsForBinaryOperation
(
l
,
r
);
l
=
l
.
convertToEnum
(
enumerators
);
...
...
@@ -281,6 +284,7 @@ public class Comparison extends Condition {
l
=
l
.
convertTo
(
dataType
,
-
1
,
mode
);
r
=
r
.
convertTo
(
dataType
,
-
1
,
mode
);
}
}
boolean
result
=
compareNotNull
(
database
,
l
,
r
,
compareType
);
return
ValueBoolean
.
get
(
result
);
}
...
...
h2/src/main/org/h2/mvstore/db/ValueDataType.java
浏览文件 @
f68ac3f3
...
...
@@ -142,22 +142,15 @@ public class ValueDataType implements DataType {
if
(
a
==
b
)
{
return
0
;
}
// null is never stored;
// comparison with null is used to retrieve all entries
// in which case null is always lower than all entries
// (even for descending ordered indexes)
if
(
a
==
null
)
{
return
-
1
;
}
else
if
(
b
==
null
)
{
return
1
;
}
boolean
aNull
=
a
==
ValueNull
.
INSTANCE
;
boolean
bNull
=
b
==
ValueNull
.
INSTANCE
;
if
(
aNull
||
bNull
)
{
if
(
aNull
||
b
==
ValueNull
.
INSTANCE
)
{
return
SortOrder
.
compareNull
(
aNull
,
sortType
);
}
int
t2
=
Value
.
getHigherOrder
(
a
.
getType
(),
b
.
getType
());
int
aType
=
a
.
getType
();
int
bType
=
b
.
getType
();
if
(
aType
!=
bType
||
aType
==
Value
.
ENUM
)
{
int
t2
=
Value
.
getHigherOrder
(
aType
,
bType
);
if
(
t2
==
Value
.
ENUM
)
{
String
[]
enumerators
=
ValueEnum
.
getEnumeratorsForBinaryOperation
(
a
,
b
);
a
=
a
.
convertToEnum
(
enumerators
);
...
...
@@ -166,6 +159,7 @@ public class ValueDataType implements DataType {
a
=
a
.
convertTo
(
t2
,
-
1
,
mode
);
b
=
b
.
convertTo
(
t2
,
-
1
,
mode
);
}
}
int
comp
=
a
.
compareTypeSafe
(
b
,
compareMode
);
if
((
sortType
&
SortOrder
.
DESCENDING
)
!=
0
)
{
...
...
h2/src/main/org/h2/table/Table.java
浏览文件 @
f68ac3f3
...
...
@@ -1213,7 +1213,10 @@ public abstract class Table extends SchemaObjectBase {
if
(
a
==
b
)
{
return
0
;
}
int
dataType
=
Value
.
getHigherOrder
(
a
.
getType
(),
b
.
getType
());
int
aType
=
a
.
getType
();
int
bType
=
b
.
getType
();
if
(
aType
!=
bType
||
aType
==
Value
.
ENUM
)
{
int
dataType
=
Value
.
getHigherOrder
(
aType
,
bType
);
if
(
dataType
==
Value
.
ENUM
)
{
String
[]
enumerators
=
ValueEnum
.
getEnumeratorsForBinaryOperation
(
a
,
b
);
a
=
a
.
convertToEnum
(
enumerators
);
...
...
@@ -1223,6 +1226,7 @@ public abstract class Table extends SchemaObjectBase {
a
=
a
.
convertTo
(
dataType
,
-
1
,
mode
);
b
=
b
.
convertTo
(
dataType
,
-
1
,
mode
);
}
}
return
a
.
compareTypeSafe
(
b
,
compareMode
);
}
...
...
h2/src/main/org/h2/value/Value.java
浏览文件 @
f68ac3f3
...
...
@@ -1161,13 +1161,6 @@ public abstract class Value {
* 1 otherwise
*/
public
final
int
compareTypeSafe
(
Value
v
,
CompareMode
mode
)
{
if
(
this
==
v
)
{
return
0
;
}
else
if
(
this
==
ValueNull
.
INSTANCE
)
{
return
-
1
;
}
else
if
(
v
==
ValueNull
.
INSTANCE
)
{
return
1
;
}
return
compareSecure
(
v
,
mode
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论