Commit cd97f988 authored by Michael Meskes's avatar Michael Meskes

Added missing ';'

parent 19c8dc83
......@@ -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; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment