| 1060 | } |
| 1061 | |
| 1062 | static void |
| 1063 | dump_while(PLpgSQL_stmt_while *stmt) |
| 1064 | { |
| 1065 | dump_ind(); |
| 1066 | printf("WHILE "); |
| 1067 | dump_expr(stmt->cond); |
| 1068 | printf("\n"); |
| 1069 | |
| 1070 | dump_stmts(stmt->body); |
| 1071 | |
| 1072 | dump_ind(); |
| 1073 | printf(" ENDWHILE\n"); |
| 1074 | } |
| 1075 | |
| 1076 | static void |
| 1077 | dump_fori(PLpgSQL_stmt_fori *stmt) |
no test coverage detected