Prevent #option dump from crashing on FORI statement with null step. Reported by Pavel.

This commit is contained in:
Tom Lane 2010-02-17 01:48:45 +00:00
parent 9cbcfca44a
commit 711804fddd
1 changed files with 8 additions and 5 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.88 2010/01/19 01:35:31 tgl Exp $ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.89 2010/02/17 01:48:45 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -543,10 +543,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);