Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e1f63550
提交
e1f63550
authored
6 年前
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Optimize MergeUsing.buildColumnListFromOnCondition()
上级
9947934e
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
12 行增加
和
24 行删除
+12
-24
MergeUsing.java
h2/src/main/org/h2/command/dml/MergeUsing.java
+4
-14
ConstraintCheck.java
h2/src/main/org/h2/constraint/ConstraintCheck.java
+1
-7
ExpressionVisitor.java
h2/src/main/org/h2/expression/ExpressionVisitor.java
+7
-3
没有找到文件。
h2/src/main/org/h2/command/dml/MergeUsing.java
浏览文件 @
e1f63550
...
@@ -342,9 +342,7 @@ public class MergeUsing extends Prepared {
...
@@ -342,9 +342,7 @@ public class MergeUsing extends Prepared {
onCondition
.
mapColumns
(
targetTableFilter
,
1
);
onCondition
.
mapColumns
(
targetTableFilter
,
1
);
if
(
keys
==
null
)
{
if
(
keys
==
null
)
{
HashSet
<
Column
>
targetColumns
=
buildColumnListFromOnCondition
(
keys
=
buildColumnListFromOnCondition
(
targetTableFilter
.
getTable
());
targetTableFilter
);
keys
=
targetColumns
.
toArray
(
new
Column
[
0
]);
}
}
if
(
keys
.
length
==
0
)
{
if
(
keys
.
length
==
0
)
{
throw
DbException
.
get
(
ErrorCode
.
COLUMN_NOT_FOUND_1
,
throw
DbException
.
get
(
ErrorCode
.
COLUMN_NOT_FOUND_1
,
...
@@ -410,19 +408,11 @@ public class MergeUsing extends Prepared {
...
@@ -410,19 +408,11 @@ public class MergeUsing extends Prepared {
targetMatchQuery
.
prepare
();
targetMatchQuery
.
prepare
();
}
}
private
HashSet
<
Column
>
buildColumnListFromOnCondition
(
private
Column
[]
buildColumnListFromOnCondition
(
Table
table
)
{
TableFilter
anyTableFilter
)
{
HashSet
<
Column
>
filteredColumns
=
new
HashSet
<>();
HashSet
<
Column
>
columns
=
new
HashSet
<>();
HashSet
<
Column
>
columns
=
new
HashSet
<>();
ExpressionVisitor
visitor
=
ExpressionVisitor
ExpressionVisitor
visitor
=
ExpressionVisitor
.
getColumnsVisitor
(
columns
,
table
);
.
getColumnsVisitor
(
columns
);
onCondition
.
isEverything
(
visitor
);
onCondition
.
isEverything
(
visitor
);
for
(
Column
c
:
columns
)
{
return
columns
.
toArray
(
new
Column
[
0
]);
if
(
c
!=
null
&&
c
.
getTable
()
==
anyTableFilter
.
getTable
())
{
filteredColumns
.
add
(
c
);
}
}
return
filteredColumns
;
}
}
private
Expression
appendOnCondition
(
Update
updateCommand
)
{
private
Expression
appendOnCondition
(
Update
updateCommand
)
{
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/constraint/ConstraintCheck.java
浏览文件 @
e1f63550
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
package
org
.
h2
.
constraint
;
package
org
.
h2
.
constraint
;
import
java.util.HashSet
;
import
java.util.HashSet
;
import
java.util.Iterator
;
import
org.h2.api.ErrorCode
;
import
org.h2.api.ErrorCode
;
import
org.h2.engine.Session
;
import
org.h2.engine.Session
;
import
org.h2.expression.Expression
;
import
org.h2.expression.Expression
;
...
@@ -122,12 +121,7 @@ public class ConstraintCheck extends Constraint {
...
@@ -122,12 +121,7 @@ public class ConstraintCheck extends Constraint {
@Override
@Override
public
HashSet
<
Column
>
getReferencedColumns
(
Table
table
)
{
public
HashSet
<
Column
>
getReferencedColumns
(
Table
table
)
{
HashSet
<
Column
>
columns
=
new
HashSet
<>();
HashSet
<
Column
>
columns
=
new
HashSet
<>();
expr
.
isEverything
(
ExpressionVisitor
.
getColumnsVisitor
(
columns
));
expr
.
isEverything
(
ExpressionVisitor
.
getColumnsVisitor
(
columns
,
table
));
for
(
Iterator
<
Column
>
it
=
columns
.
iterator
();
it
.
hasNext
();)
{
if
(
it
.
next
().
getTable
()
!=
table
)
{
it
.
remove
();
}
}
return
columns
;
return
columns
;
}
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/expression/ExpressionVisitor.java
浏览文件 @
e1f63550
...
@@ -239,10 +239,11 @@ public class ExpressionVisitor {
...
@@ -239,10 +239,11 @@ public class ExpressionVisitor {
* Create a new visitor to get all referenced columns.
* Create a new visitor to get all referenced columns.
*
*
* @param columns the columns map
* @param columns the columns map
* @param table table to gather columns from, or {@code null} to gather all columns
* @return the new visitor
* @return the new visitor
*/
*/
public
static
ExpressionVisitor
getColumnsVisitor
(
HashSet
<
Column
>
columns
)
{
public
static
ExpressionVisitor
getColumnsVisitor
(
HashSet
<
Column
>
columns
,
Table
table
)
{
return
new
ExpressionVisitor
(
GET_COLUMNS2
,
0
,
null
,
null
,
null
,
null
,
null
,
columns
);
return
new
ExpressionVisitor
(
GET_COLUMNS2
,
0
,
null
,
null
,
table
,
null
,
null
,
columns
);
}
}
public
static
ExpressionVisitor
getMaxModificationIdVisitor
()
{
public
static
ExpressionVisitor
getMaxModificationIdVisitor
()
{
...
@@ -269,9 +270,12 @@ public class ExpressionVisitor {
...
@@ -269,9 +270,12 @@ public class ExpressionVisitor {
void
addColumn1
(
Column
column
)
{
void
addColumn1
(
Column
column
)
{
columns1
.
add
(
column
);
columns1
.
add
(
column
);
}
}
void
addColumn2
(
Column
column
)
{
void
addColumn2
(
Column
column
)
{
if
(
table
==
null
||
table
==
column
.
getTable
())
{
columns2
.
add
(
column
);
columns2
.
add
(
column
);
}
}
}
/**
/**
* Get the dependency set.
* Get the dependency set.
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论