Skip to content

Commit

Permalink
修复alibaba#4339:SQLUpdateStatement缺少对with语句的访问支持
Browse files Browse the repository at this point in the history
  • Loading branch information
1123183721 committed Jun 28, 2021
1 parent 584dcb6 commit a1c824a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ protected void accept0(SQLASTVisitor visitor) {

protected void acceptChild(SQLASTVisitor visitor)
{
if (with != null) {
with.accept(visitor);
}

if (tableSource != null) {
tableSource.accept(visitor);
}
Expand Down

0 comments on commit a1c824a

Please sign in to comment.