Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
ac4a616e
提交
ac4a616e
authored
5月 29, 2018
作者:
andrei
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'h2database/master' into txcommit-atomic
上级
bedf6c4b
40418025
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
43 行增加
和
54 行删除
+43
-54
MergeUsing.java
h2/src/main/org/h2/command/dml/MergeUsing.java
+35
-44
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
浏览文件 @
ac4a616e
...
...
@@ -240,44 +240,45 @@ public class MergeUsing extends Prepared {
}
private
boolean
isTargetRowFound
()
{
ResultInterface
rows
=
targetMatchQuery
.
query
(
0
);
int
countTargetRowsFound
=
0
;
Value
[]
targetRowIdValue
=
null
;
while
(
rows
.
next
())
{
countTargetRowsFound
++;
targetRowIdValue
=
rows
.
currentRow
();
try
(
ResultInterface
rows
=
targetMatchQuery
.
query
(
0
))
{
if
(!
rows
.
next
())
{
return
false
;
}
Value
targetRowId
=
rows
.
currentRow
()[
0
];
Integer
number
=
targetRowidsRemembered
.
get
(
targetRowId
);
// throw and exception if we have processed this _ROWID_ before...
if
(
targetRowidsRemembered
.
containsKey
(
targetRowIdValue
[
0
])
)
{
if
(
number
!=
null
)
{
throw
DbException
.
get
(
ErrorCode
.
DUPLICATE_KEY_1
,
"Merge using ON column expression, "
+
"duplicate _ROWID_ target record already updated, deleted or inserted:_ROWID_="
+
targetRowId
Value
[
0
].
toString
()
+
":in:"
+
targetRowId
+
":in:"
+
targetTableFilter
.
getTable
()
+
":conflicting source row number:"
+
targetRowidsRemembered
.
get
(
targetRowIdValue
[
0
]));
}
else
{
// remember the source column values we have used before (they
// are the effective ON clause keys
// and should not be repeated
targetRowidsRemembered
.
put
(
targetRowIdValue
[
0
],
sourceQueryRowNumber
);
+
number
);
}
// remember the source column values we have used before (they
// are the effective ON clause keys
// and should not be repeated
targetRowidsRemembered
.
put
(
targetRowId
,
sourceQueryRowNumber
);
if
(
rows
.
next
())
{
int
rowCount
;
if
(
rows
.
isLazy
())
{
for
(
rowCount
=
2
;
rows
.
next
();
rowCount
++)
{
}
}
else
{
rowCount
=
rows
.
getRowCount
();
}
throw
DbException
.
get
(
ErrorCode
.
DUPLICATE_KEY_1
,
"Duplicate key updated "
+
rowCount
+
" rows at once, only 1 expected:_ROWID_="
+
targetRowId
+
":in:"
+
targetTableFilter
.
getTable
()
+
":conflicting source row number:"
+
targetRowidsRemembered
.
get
(
targetRowId
));
}
return
true
;
}
rows
.
close
();
if
(
countTargetRowsFound
>
1
)
{
throw
DbException
.
get
(
ErrorCode
.
DUPLICATE_KEY_1
,
"Duplicate key updated "
+
countTargetRowsFound
+
" rows at once, only 1 expected:_ROWID_="
+
targetRowIdValue
[
0
].
toString
()
+
":in:"
+
targetTableFilter
.
getTable
()
+
":conflicting source row number:"
+
targetRowidsRemembered
.
get
(
targetRowIdValue
[
0
]));
}
return
countTargetRowsFound
>
0
;
}
private
int
addRowByCommandInsert
(
Row
sourceRow
)
{
...
...
@@ -348,9 +349,7 @@ public class MergeUsing extends Prepared {
onCondition
.
mapColumns
(
targetTableFilter
,
1
);
if
(
keys
==
null
)
{
HashSet
<
Column
>
targetColumns
=
buildColumnListFromOnCondition
(
targetTableFilter
);
keys
=
targetColumns
.
toArray
(
new
Column
[
0
]);
keys
=
buildColumnListFromOnCondition
(
targetTableFilter
.
getTable
());
}
if
(
keys
.
length
==
0
)
{
throw
DbException
.
get
(
ErrorCode
.
COLUMN_NOT_FOUND_1
,
...
...
@@ -416,19 +415,11 @@ public class MergeUsing extends Prepared {
targetMatchQuery
.
prepare
();
}
private
HashSet
<
Column
>
buildColumnListFromOnCondition
(
TableFilter
anyTableFilter
)
{
HashSet
<
Column
>
filteredColumns
=
new
HashSet
<>();
private
Column
[]
buildColumnListFromOnCondition
(
Table
table
)
{
HashSet
<
Column
>
columns
=
new
HashSet
<>();
ExpressionVisitor
visitor
=
ExpressionVisitor
.
getColumnsVisitor
(
columns
);
ExpressionVisitor
visitor
=
ExpressionVisitor
.
getColumnsVisitor
(
columns
,
table
);
onCondition
.
isEverything
(
visitor
);
for
(
Column
c
:
columns
)
{
if
(
c
!=
null
&&
c
.
getTable
()
==
anyTableFilter
.
getTable
())
{
filteredColumns
.
add
(
c
);
}
}
return
filteredColumns
;
return
columns
.
toArray
(
new
Column
[
0
]);
}
private
Expression
appendOnCondition
(
Update
updateCommand
)
{
...
...
h2/src/main/org/h2/constraint/ConstraintCheck.java
浏览文件 @
ac4a616e
...
...
@@ -6,7 +6,6 @@
package
org
.
h2
.
constraint
;
import
java.util.HashSet
;
import
java.util.Iterator
;
import
org.h2.api.ErrorCode
;
import
org.h2.engine.Session
;
import
org.h2.expression.Expression
;
...
...
@@ -122,12 +121,7 @@ public class ConstraintCheck extends Constraint {
@Override
public
HashSet
<
Column
>
getReferencedColumns
(
Table
table
)
{
HashSet
<
Column
>
columns
=
new
HashSet
<>();
expr
.
isEverything
(
ExpressionVisitor
.
getColumnsVisitor
(
columns
));
for
(
Iterator
<
Column
>
it
=
columns
.
iterator
();
it
.
hasNext
();)
{
if
(
it
.
next
().
getTable
()
!=
table
)
{
it
.
remove
();
}
}
expr
.
isEverything
(
ExpressionVisitor
.
getColumnsVisitor
(
columns
,
table
));
return
columns
;
}
...
...
h2/src/main/org/h2/expression/ExpressionVisitor.java
浏览文件 @
ac4a616e
...
...
@@ -239,10 +239,11 @@ public class ExpressionVisitor {
* Create a new visitor to get all referenced columns.
*
* @param columns the columns map
* @param table table to gather columns from, or {@code null} to gather all columns
* @return the new visitor
*/
public
static
ExpressionVisitor
getColumnsVisitor
(
HashSet
<
Column
>
columns
)
{
return
new
ExpressionVisitor
(
GET_COLUMNS2
,
0
,
null
,
null
,
null
,
null
,
null
,
columns
);
public
static
ExpressionVisitor
getColumnsVisitor
(
HashSet
<
Column
>
columns
,
Table
table
)
{
return
new
ExpressionVisitor
(
GET_COLUMNS2
,
0
,
null
,
null
,
table
,
null
,
null
,
columns
);
}
public
static
ExpressionVisitor
getMaxModificationIdVisitor
()
{
...
...
@@ -269,8 +270,11 @@ public class ExpressionVisitor {
void
addColumn1
(
Column
column
)
{
columns1
.
add
(
column
);
}
void
addColumn2
(
Column
column
)
{
columns2
.
add
(
column
);
if
(
table
==
null
||
table
==
column
.
getTable
())
{
columns2
.
add
(
column
);
}
}
/**
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论