1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-01 14:21:49 +03:00

Added missing ';'

This commit is contained in:
Michael Meskes 2008-10-31 16:36:13 +00:00
parent 19c8dc839b
commit cd97f98844

View File

@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.633 2008/10/31 08:39:20 heikki Exp $ * $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.634 2008/10/31 16:36:13 meskes Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
@ -6668,12 +6668,13 @@ select_offset_value2:
row_or_rows: row_or_rows:
ROW { $$ = 0; } ROW { $$ = 0; }
| ROWS { $$ = 0; } | ROWS { $$ = 0; }
;
/* noise words */ /* noise words */
first_or_next: first_or_next:
FIRST_P { $$ = 0; } FIRST_P { $$ = 0; }
| NEXT { $$ = 0; } | NEXT { $$ = 0; }
;
group_clause: group_clause:
GROUP_P BY expr_list { $$ = $3; } GROUP_P BY expr_list { $$ = $3; }