Skip to content

Commit

Permalink
Set parent for MERGE insert and update clause
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhengguanLi committed Apr 11, 2024
1 parent 34bd5f1 commit bb4e77b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ public MergeUpdateClause getUpdateClause() {
}

public void setUpdateClause(MergeUpdateClause updateClause) {
if (updateClause != null) {
updateClause.setParent(this);
}
this.updateClause = updateClause;
}

Expand All @@ -98,6 +101,9 @@ public MergeInsertClause getInsertClause() {
}

public void setInsertClause(MergeInsertClause insertClause) {
if (insertClause != null) {
insertClause.setParent(this);
}
this.insertClause = insertClause;
}

Expand Down

0 comments on commit bb4e77b

Please sign in to comment.