Fix broken sqlparser test

This commit is contained in:
Simon Binder 2021-01-18 19:24:47 +01:00
parent 4ffe29fe17
commit 4940ed5be8
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class ColumnResolver extends RecursiveVisitor<void, void> {
@override
void visitUpdateStatement(UpdateStatement e, void arg) {
_addIfResolved(e, e.table);
visitChildren(e, arg);
visitExcept(e, e.table, arg);
}
@override