mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Added missing ';'
This commit is contained in:
parent
19c8dc839b
commit
cd97f98844
@ -11,7 +11,7 @@
|
||||
*
|
||||
*
|
||||
* 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
|
||||
* AUTHOR DATE MAJOR EVENT
|
||||
@ -6668,12 +6668,13 @@ select_offset_value2:
|
||||
row_or_rows:
|
||||
ROW { $$ = 0; }
|
||||
| ROWS { $$ = 0; }
|
||||
;
|
||||
|
||||
/* noise words */
|
||||
first_or_next:
|
||||
FIRST_P { $$ = 0; }
|
||||
| NEXT { $$ = 0; }
|
||||
|
||||
;
|
||||
|
||||
group_clause:
|
||||
GROUP_P BY expr_list { $$ = $3; }
|
||||
|
Loading…
Reference in New Issue
Block a user