File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 4
4
* procedural language
5
5
*
6
6
* IDENTIFICATION
7
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.31 2002/03/06 18:50:29 momjian Exp $
7
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.32 2002/05/01 12:40:22 wieck Exp $
8
8
*
9
9
* This software is copyrighted by Jan Wieck - Hamburg.
10
10
*
@@ -641,6 +641,7 @@ decl_defval : ';'
641
641
642
642
decl_defkey : K_ASSIGN
643
643
| K_DEFAULT
644
+ ;
644
645
645
646
proc_sect :
646
647
{
@@ -1024,6 +1025,7 @@ fori_lower :
1024
1025
1025
1026
$$ .expr = plpgsql_read_expression(K_DOTDOT, " .." );
1026
1027
}
1028
+ ;
1027
1029
1028
1030
stmt_fors : opt_label K_FOR lno fors_target K_IN K_SELECT expr_until_loop loop_body
1029
1031
{
@@ -1053,6 +1055,7 @@ stmt_fors : opt_label K_FOR lno fors_target K_IN K_SELECT expr_until_loop loop_
1053
1055
1054
1056
$$ = (PLpgSQL_stmt *)new ;
1055
1057
}
1058
+ ;
1056
1059
1057
1060
stmt_dynfors : opt_label K_FOR lno fors_target K_IN K_EXECUTE expr_until_loop loop_body
1058
1061
{
@@ -1082,6 +1085,7 @@ stmt_dynfors : opt_label K_FOR lno fors_target K_IN K_EXECUTE expr_until_loop lo
1082
1085
1083
1086
$$ = (PLpgSQL_stmt *)new ;
1084
1087
}
1088
+ ;
1085
1089
1086
1090
fors_target : T_RECORD
1087
1091
{ $$ = yylval.rec; }
You can’t perform that action at this time.
0 commit comments