We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
acceptChild方法访问子节点时漏了with节点
protected void acceptChild(SQLASTVisitor visitor) { if (with != null) { with.accept(visitor); }
if (tableSource != null) { tableSource.accept(visitor); } if (from != null) { from.accept(visitor); } for (int i = 0; i < items.size(); i++) { SQLUpdateSetItem item = items.get(i); if (item != null) { item.accept(visitor); } } if (where != null) { where.accept(visitor); } if (orderBy != null) { orderBy.accept(visitor); } }
The text was updated successfully, but these errors were encountered:
修复alibaba#4339:SQLUpdateStatement缺少对with语句的访问支持
a1c824a
Merge pull request #4340 from 1123183721/master
f30ca6d
修复#4339:SQLUpdateStatement缺少对with语句的访问支持
8fc44bb
df739be
No branches or pull requests
acceptChild方法访问子节点时漏了with节点
protected void acceptChild(SQLASTVisitor visitor)
{
if (with != null) {
with.accept(visitor);
}
The text was updated successfully, but these errors were encountered: