Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
fe6cf1ff
提交
fe6cf1ff
authored
12月 11, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Get rid of DbSettings.optimizeIsNull
上级
02911e9d
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
7 行增加
和
29 行删除
+7
-29
DbSettings.java
h2/src/main/org/h2/engine/DbSettings.java
+0
-6
Comparison.java
h2/src/main/org/h2/expression/condition/Comparison.java
+2
-6
IndexCursor.java
h2/src/main/org/h2/index/IndexCursor.java
+5
-17
没有找到文件。
h2/src/main/org/h2/engine/DbSettings.java
浏览文件 @
fe6cf1ff
...
...
@@ -206,12 +206,6 @@ public class DbSettings extends SettingsBase {
*/
public
final
boolean
optimizeInSelect
=
get
(
"OPTIMIZE_IN_SELECT"
,
true
);
/**
* Database setting <code>OPTIMIZE_IS_NULL</code> (default: false).<br />
* Use an index for condition of the form columnName IS NULL.
*/
public
final
boolean
optimizeIsNull
=
get
(
"OPTIMIZE_IS_NULL"
,
true
);
/**
* Database setting <code>OPTIMIZE_OR</code> (default: true).<br />
* Convert (C=? OR C=?) to (C IN(?, ?)).
...
...
h2/src/main/org/h2/expression/condition/Comparison.java
浏览文件 @
fe6cf1ff
...
...
@@ -397,12 +397,8 @@ public class Comparison extends Condition {
if
(
l
!=
null
)
{
switch
(
compareType
)
{
case
IS_NULL:
if
(
session
.
getDatabase
().
getSettings
().
optimizeIsNull
)
{
filter
.
addIndexCondition
(
IndexCondition
.
get
(
Comparison
.
EQUAL_NULL_SAFE
,
l
,
ValueExpression
.
getNull
()));
}
IndexCondition
.
get
(
Comparison
.
EQUAL_NULL_SAFE
,
l
,
ValueExpression
.
getNull
()));
}
}
return
;
...
...
h2/src/main/org/h2/index/IndexCursor.java
浏览文件 @
fe6cf1ff
...
...
@@ -33,7 +33,6 @@ import org.h2.value.ValueNull;
*/
public
class
IndexCursor
implements
Cursor
{
private
Session
session
;
private
final
TableFilter
tableFilter
;
private
Index
index
;
private
Table
table
;
...
...
@@ -75,7 +74,6 @@ public class IndexCursor implements Cursor {
* @param indexConditions Index conditions.
*/
public
void
prepare
(
Session
s
,
ArrayList
<
IndexCondition
>
indexConditions
)
{
this
.
session
=
s
;
alwaysFalse
=
false
;
start
=
end
=
null
;
inList
=
null
;
...
...
@@ -142,14 +140,6 @@ public class IndexCursor implements Cursor {
inList
=
null
;
inResult
=
null
;
}
if
(!
session
.
getDatabase
().
getSettings
().
optimizeIsNull
)
{
if
(
isStart
&&
isEnd
)
{
if
(
v
==
ValueNull
.
INSTANCE
)
{
// join on a column=NULL is always false
alwaysFalse
=
true
;
}
}
}
}
}
if
(
inColumn
!=
null
)
{
...
...
@@ -239,14 +229,12 @@ public class IndexCursor implements Cursor {
}
else
if
(
b
==
null
)
{
return
a
;
}
if
(
session
.
getDatabase
().
getSettings
().
optimizeIsNull
)
{
// IS NULL must be checked later
if
(
a
==
ValueNull
.
INSTANCE
)
{
return
b
;
}
else
if
(
b
==
ValueNull
.
INSTANCE
)
{
return
a
;
}
}
int
comp
=
table
.
getDatabase
().
compare
(
a
,
b
);
if
(
comp
==
0
)
{
return
a
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论