Prevent #option dump from crashing on FORI statement with null step. Reported by Pavel.
This commit is contained in:
parent
e5b7616c04
commit
192cd7f390
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.67 2008/01/01 19:46:00 momjian Exp $
|
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.67.2.1 2010/02/17 01:48:58 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -749,10 +749,13 @@ dump_fori(PLpgSQL_stmt_fori *stmt)
|
|||||||
printf(" upper = ");
|
printf(" upper = ");
|
||||||
dump_expr(stmt->upper);
|
dump_expr(stmt->upper);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
dump_ind();
|
if (stmt->step)
|
||||||
printf(" step = ");
|
{
|
||||||
dump_expr(stmt->step);
|
dump_ind();
|
||||||
printf("\n");
|
printf(" step = ");
|
||||||
|
dump_expr(stmt->step);
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
dump_indent -= 2;
|
dump_indent -= 2;
|
||||||
|
|
||||||
dump_stmts(stmt->body);
|
dump_stmts(stmt->body);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user