Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c8dc8 commit cd97f98Copy full SHA for cd97f98
src/backend/parser/gram.y
@@ -11,7 +11,7 @@
11
*
12
13
* IDENTIFICATION
14
- * $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 $
15
16
* HISTORY
17
* AUTHOR DATE MAJOR EVENT
@@ -6668,12 +6668,13 @@ select_offset_value2:
6668
row_or_rows:
6669
ROW { $$ = 0; }
6670
| ROWS { $$ = 0; }
6671
+ ;
6672
6673
/* noise words */
6674
first_or_next:
6675
FIRST_P { $$ = 0; }
6676
| NEXT { $$ = 0; }
-
6677
6678
6679
group_clause:
6680
GROUP_P BY expr_list { $$ = $3; }
0 commit comments