Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cd97f98

Browse files
author
Michael Meskes
committed
Added missing ';'
1 parent 19c8dc8 commit cd97f98

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/backend/parser/gram.y

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.633 2008/10/31 08:39:20 heikki Exp $
14+
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.634 2008/10/31 16:36:13 meskes Exp $
1515
*
1616
* HISTORY
1717
* AUTHOR DATE MAJOR EVENT
@@ -6668,12 +6668,13 @@ select_offset_value2:
66686668
row_or_rows:
66696669
ROW { $$ = 0; }
66706670
| ROWS { $$ = 0; }
6671+
;
66716672

66726673
/* noise words */
66736674
first_or_next:
66746675
FIRST_P { $$ = 0; }
66756676
| NEXT { $$ = 0; }
6676-
6677+
;
66776678

66786679
group_clause:
66796680
GROUP_P BY expr_list { $$ = $3; }

0 commit comments

Comments
 (0)