Added missing ';'
authorMichael Meskes <meskes@postgresql.org>
Fri, 31 Oct 2008 16:36:13 +0000 (16:36 +0000)
committerMichael Meskes <meskes@postgresql.org>
Fri, 31 Oct 2008 16:36:13 +0000 (16:36 +0000)
src/backend/parser/gram.y

index de760b5d574f1e23b369cf775ba8402508caa4f5..70ce9abb2a60869785e1953242a651a6221a9c00 100644 (file)
@@ -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; }