PL/PgSQL grammar, which were causing warnings when used with Bison
1.35.
Neil Conway <neilconway@rogers.com>
decl_defkey : K_ASSIGN
| K_DEFAULT
+ ;
proc_sect :
{
$$.expr = plpgsql_read_expression(K_DOTDOT, "..");
}
+ ;
stmt_fors : opt_label K_FOR lno fors_target K_IN K_SELECT expr_until_loop loop_body
{
$$ = (PLpgSQL_stmt *)new;
}
+ ;
stmt_dynfors : opt_label K_FOR lno fors_target K_IN K_EXECUTE expr_until_loop loop_body
{
$$ = (PLpgSQL_stmt *)new;
}
+ ;
fors_target : T_RECORD
{ $$ = yylval.rec; }