Skip to content

Commit 2c787cb

Browse files
author
dapeng
committed
1.10同步修改
1 parent 56df6ec commit 2c787cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oracle/oracle-sink/src/main/java/com/dtstack/flink/sql/sink/oracle/OracleDialect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private String buildConnectionByAllReplace(boolean allReplace, String col) {
104104

105105

106106
private String buildConnectionConditions(String[] uniqueKeyFields) {
107-
return Arrays.stream(uniqueKeyFields).map(col -> "T1." + quoteIdentifier(col) + "=T2." + quoteIdentifier(col)).collect(Collectors.joining(","));
107+
return Arrays.stream(uniqueKeyFields).map(col -> "T1." + quoteIdentifier(col) + "=T2." + quoteIdentifier(col)).collect(Collectors.joining(" AND "));
108108
}
109109

110110
/**

0 commit comments

Comments
 (0)