Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
4b88dc6d
提交
4b88dc6d
authored
1月 21, 2019
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use Value.convertTo() with TypeInfo in more places
上级
56a9668f
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
11 行增加
和
11 行删除
+11
-11
BinaryOperation.java
h2/src/main/org/h2/expression/BinaryOperation.java
+2
-3
UnaryOperation.java
h2/src/main/org/h2/expression/UnaryOperation.java
+1
-1
ConditionInSelect.java
...c/main/org/h2/expression/condition/ConditionInSelect.java
+4
-3
HashIndex.java
h2/src/main/org/h2/index/HashIndex.java
+2
-2
NonUniqueHashIndex.java
h2/src/main/org/h2/index/NonUniqueHashIndex.java
+2
-2
没有找到文件。
h2/src/main/org/h2/expression/BinaryOperation.java
浏览文件 @
4b88dc6d
...
...
@@ -99,11 +99,10 @@ public class BinaryOperation extends Expression {
@Override
public
Value
getValue
(
Session
session
)
{
Mode
mode
=
session
.
getDatabase
().
getMode
();
int
dataType
=
type
.
getValueType
();
Value
l
=
left
.
getValue
(
session
).
convertTo
(
dataType
,
mode
);
Value
l
=
left
.
getValue
(
session
).
convertTo
(
type
,
mode
,
null
);
Value
r
=
right
.
getValue
(
session
);
if
(
convertRight
)
{
r
=
r
.
convertTo
(
dataType
,
mode
);
r
=
r
.
convertTo
(
type
,
mode
,
null
);
}
switch
(
opType
)
{
case
CONCAT:
{
...
...
h2/src/main/org/h2/expression/UnaryOperation.java
浏览文件 @
4b88dc6d
...
...
@@ -34,7 +34,7 @@ public class UnaryOperation extends Expression {
@Override
public
Value
getValue
(
Session
session
)
{
Value
a
=
arg
.
getValue
(
session
).
convertTo
(
type
.
getValueType
(),
session
.
getDatabase
().
getMode
()
);
Value
a
=
arg
.
getValue
(
session
).
convertTo
(
type
,
session
.
getDatabase
().
getMode
(),
null
);
return
a
==
ValueNull
.
INSTANCE
?
a
:
a
.
negate
();
}
...
...
h2/src/main/org/h2/expression/condition/ConditionInSelect.java
浏览文件 @
4b88dc6d
...
...
@@ -19,6 +19,7 @@ import org.h2.result.ResultInterface;
import
org.h2.table.ColumnResolver
;
import
org.h2.table.TableFilter
;
import
org.h2.util.StringUtils
;
import
org.h2.value.TypeInfo
;
import
org.h2.value.Value
;
import
org.h2.value.ValueBoolean
;
import
org.h2.value.ValueNull
;
...
...
@@ -72,8 +73,8 @@ public class ConditionInSelect extends Condition {
return
ValueBoolean
.
TRUE
;
}
}
else
{
int
dataType
=
rows
.
getColumnType
(
0
).
getValueType
(
);
if
(
dataType
==
Value
.
NULL
)
{
TypeInfo
colType
=
rows
.
getColumnType
(
0
);
if
(
colType
.
getValueType
()
==
Value
.
NULL
)
{
return
ValueBoolean
.
FALSE
;
}
if
(
l
.
getValueType
()
==
Value
.
ROW
)
{
...
...
@@ -83,7 +84,7 @@ public class ConditionInSelect extends Condition {
}
l
=
leftList
[
0
];
}
l
=
l
.
convertTo
(
dataType
,
database
.
getMode
()
);
l
=
l
.
convertTo
(
colType
,
database
.
getMode
(),
null
);
if
(
rows
.
containsDistinct
(
new
Value
[]
{
l
}))
{
return
ValueBoolean
.
TRUE
;
}
...
...
h2/src/main/org/h2/index/HashIndex.java
浏览文件 @
4b88dc6d
...
...
@@ -97,10 +97,10 @@ public class HashIndex extends BaseIndex {
/*
* Sometimes the incoming search is a similar, but not the same type
* e.g. the search value is INT, but the index column is LONG. In which
* case we need to convert, otherwise the
Value
HashMap will not find the
* case we need to convert, otherwise the HashMap will not find the
* result.
*/
v
=
v
.
convertTo
(
tableData
.
getColumn
(
indexColumn
).
getType
()
.
getValueType
(),
database
.
getMode
()
);
v
=
v
.
convertTo
(
tableData
.
getColumn
(
indexColumn
).
getType
()
,
database
.
getMode
(),
null
);
Row
result
;
Long
pos
=
rows
.
get
(
v
);
if
(
pos
==
null
)
{
...
...
h2/src/main/org/h2/index/NonUniqueHashIndex.java
浏览文件 @
4b88dc6d
...
...
@@ -105,10 +105,10 @@ public class NonUniqueHashIndex extends BaseIndex {
/*
* Sometimes the incoming search is a similar, but not the same type
* e.g. the search value is INT, but the index column is LONG. In which
* case we need to convert, otherwise the
Value
HashMap will not find the
* case we need to convert, otherwise the HashMap will not find the
* result.
*/
v
=
v
.
convertTo
(
tableData
.
getColumn
(
indexColumn
).
getType
()
.
getValueType
(),
database
.
getMode
()
);
v
=
v
.
convertTo
(
tableData
.
getColumn
(
indexColumn
).
getType
()
,
database
.
getMode
(),
null
);
ArrayList
<
Long
>
positions
=
rows
.
get
(
v
);
return
new
NonUniqueHashCursor
(
session
,
tableData
,
positions
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论