Skip to content

Commit

Permalink
fix pg parser
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Jan 13, 2025
1 parent d20eed8 commit cb6f3ac
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,9 @@ public SQLStatement parseSet() {
}
// skip comma
lexer.nextToken();
if (lexer.token() == SEMI) {
break;
}
}
}

Expand Down

0 comments on commit cb6f3ac

Please sign in to comment.