Skip to content

Commit

Permalink
[?] Add empty body to silence bison parser warning for GenQuery2.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Jun 7, 2024
1 parent b618a0a commit 5ab4753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/genquery2/dsl/parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ select:
| SELECT NO DISTINCT selections WHERE conditions { drv.select.distinct = false; std::swap(drv.select.selections, $4); std::swap(drv.select.conditions, $6); }

group_by:
%empty
%empty { /* Generates a default initialized group_by structure. */ }
| GROUP BY list_of_identifiers { std::swap($$.columns, $3); }

order_by:
Expand Down

0 comments on commit 5ab4753

Please sign in to comment.