Skip to content

Commit

Permalink
Merge pull request alibaba#3777 from TerCZ/patch-1
Browse files Browse the repository at this point in the history
Fix clone() bug in SQLJoinTableSource
  • Loading branch information
wenshao authored May 10, 2020
2 parents 259ad40 + 68c9c73 commit f95f1c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public void cloneTo(SQLJoinTableSource x) {
}

if(condition != null){
x.setCondition(condition);
x.setCondition(condition.clone());
}

for (SQLExpr item : using) {
Expand Down

0 comments on commit f95f1c6

Please sign in to comment.