Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
4ccb02d1
提交
4ccb02d1
authored
8月 16, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Do not use parse() in Parser.parseMergeUsing()
上级
bf312e9f
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
32 行增加
和
36 行删除
+32
-36
Parser.java
h2/src/main/org/h2/command/Parser.java
+0
-23
MergeUsing.java
h2/src/main/org/h2/command/dml/MergeUsing.java
+9
-13
mergeUsing.sql
h2/src/test/org/h2/test/scripts/dml/mergeUsing.sql
+23
-0
没有找到文件。
h2/src/main/org/h2/command/Parser.java
浏览文件 @
4ccb02d1
...
@@ -1494,17 +1494,6 @@ public class Parser {
...
@@ -1494,17 +1494,6 @@ public class Parser {
}
}
setSQL
(
command
,
"MERGE"
,
start
);
setSQL
(
command
,
"MERGE"
,
start
);
// build and prepare the targetMatchQuery ready to test each rows
// existence in the target table (using source row to match)
StringBuilder
targetMatchQuerySQL
=
new
StringBuilder
(
"SELECT _ROWID_ FROM "
);
appendTableWithSchemaAndAlias
(
targetMatchQuerySQL
,
command
.
getTargetTable
(),
command
.
getTargetTableFilter
().
getTableAlias
());
targetMatchQuerySQL
.
append
(
" WHERE "
).
append
(
command
.
getOnCondition
().
getSQL
());
command
.
setTargetMatchQuery
(
(
Select
)
parse
(
targetMatchQuerySQL
.
toString
()));
return
command
;
return
command
;
}
}
...
@@ -1548,18 +1537,6 @@ public class Parser {
...
@@ -1548,18 +1537,6 @@ public class Parser {
}
}
}
}
private
static
void
appendTableWithSchemaAndAlias
(
StringBuilder
buff
,
Table
table
,
String
alias
)
{
if
(
table
instanceof
RangeTable
)
{
buff
.
append
(
table
.
getSQL
());
}
else
{
buff
.
append
(
quoteIdentifier
(
table
.
getSchema
().
getName
()))
.
append
(
'.'
).
append
(
quoteIdentifier
(
table
.
getName
()));
}
if
(
alias
!=
null
)
{
buff
.
append
(
" AS "
).
append
(
quoteIdentifier
(
alias
));
}
}
private
Insert
parseInsert
()
{
private
Insert
parseInsert
()
{
Insert
command
=
new
Insert
(
session
);
Insert
command
=
new
Insert
(
session
);
currentPrepared
=
command
;
currentPrepared
=
command
;
...
...
h2/src/main/org/h2/command/dml/MergeUsing.java
浏览文件 @
4ccb02d1
...
@@ -17,6 +17,7 @@ import org.h2.command.Prepared;
...
@@ -17,6 +17,7 @@ import org.h2.command.Prepared;
import
org.h2.engine.Right
;
import
org.h2.engine.Right
;
import
org.h2.expression.ConditionAndOr
;
import
org.h2.expression.ConditionAndOr
;
import
org.h2.expression.Expression
;
import
org.h2.expression.Expression
;
import
org.h2.expression.ExpressionColumn
;
import
org.h2.expression.ExpressionVisitor
;
import
org.h2.expression.ExpressionVisitor
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.ResultInterface
;
...
@@ -381,11 +382,14 @@ public class MergeUsing extends Prepared {
...
@@ -381,11 +382,14 @@ public class MergeUsing extends Prepared {
}
}
// setup the targetMatchQuery - for detecting if the target row exists
// setup the targetMatchQuery - for detecting if the target row exists
Expression
targetMatchCondition
=
targetMatchQuery
.
getCondition
();
targetMatchQuery
=
new
Select
(
session
);
targetMatchCondition
.
addFilterConditions
(
sourceTableFilter
,
true
);
ArrayList
<
Expression
>
expressions
=
new
ArrayList
<>(
1
);
targetMatchCondition
.
mapColumns
(
sourceTableFilter
,
2
);
expressions
.
add
(
new
ExpressionColumn
(
session
.
getDatabase
(),
targetTable
.
getSchema
().
getName
(),
targetMatchCondition
=
targetMatchCondition
.
optimize
(
session
);
targetTableFilter
.
getTableAlias
(),
"_ROWID_"
));
targetMatchCondition
.
createIndexConditions
(
session
,
sourceTableFilter
);
targetMatchQuery
.
setExpressions
(
expressions
);
targetMatchQuery
.
addTableFilter
(
targetTableFilter
,
true
);
targetMatchQuery
.
addCondition
(
onCondition
);
targetMatchQuery
.
init
();
targetMatchQuery
.
prepare
();
targetMatchQuery
.
prepare
();
}
}
...
@@ -486,14 +490,6 @@ public class MergeUsing extends Prepared {
...
@@ -486,14 +490,6 @@ public class MergeUsing extends Prepared {
this
.
targetTable
=
targetTable
;
this
.
targetTable
=
targetTable
;
}
}
public
Select
getTargetMatchQuery
()
{
return
targetMatchQuery
;
}
public
void
setTargetMatchQuery
(
Select
targetMatchQuery
)
{
this
.
targetMatchQuery
=
targetMatchQuery
;
}
// Prepared interface implementations
// Prepared interface implementations
@Override
@Override
...
...
h2/src/test/org/h2/test/scripts/dml/mergeUsing.sql
浏览文件 @
4ccb02d1
...
@@ -187,3 +187,26 @@ MERGE INTO TEST USING DUAL ON (ID = 1)
...
@@ -187,3 +187,26 @@ MERGE INTO TEST USING DUAL ON (ID = 1)
DROP
TABLE
TEST
;
DROP
TABLE
TEST
;
>
ok
>
ok
CREATE
TABLE
TEST
(
ID
INT
PRIMARY
KEY
);
>
ok
MERGE
INTO
TEST
USING
(
SELECT
CAST
(
?
AS
INT
)
ID
FROM
DUAL
)
S
ON
(
TEST
.
ID
=
S
.
ID
)
WHEN
NOT
MATCHED
THEN
INSERT
(
ID
)
VALUES
(
S
.
ID
);
{
10
20
30
}
;
>
update
count
:
3
SELECT
*
FROM
TEST
;
>
ID
>
--
>
10
>
20
>
30
>
rows
:
3
DROP
TABLE
TEST
;
>
ok
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论