Skip to content

Commit

Permalink
Fix bug with multiple columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Mar 2, 2024
1 parent 5fd2dec commit 0aa22a1
Show file tree
Hide file tree
Showing 2 changed files with 18,896 additions and 18,936 deletions.
2 changes: 1 addition & 1 deletion third_party/libpg_query/grammar/statements/pgq.y
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ GraphTableNameOptional:
;

ColumnsOptional:
COLUMNS '(' ColumnList ')' { $$ = $3; }
COLUMNS '(' target_list_opt_comma ')' { $$ = $3; }
|
/* EMPTY */ {
PGAStar *star = makeNode(PGAStar);
Expand Down
Loading

0 comments on commit 0aa22a1

Please sign in to comment.