| 694 | } |
| 695 | |
| 696 | static void |
| 697 | free_dynfors(PLpgSQL_stmt_dynfors *stmt) |
| 698 | { |
| 699 | ListCell *lc; |
| 700 | |
| 701 | free_stmts(stmt->body); |
| 702 | free_expr(stmt->query); |
| 703 | foreach(lc, stmt->params) |
| 704 | { |
| 705 | free_expr((PLpgSQL_expr *) lfirst(lc)); |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | static void |
| 710 | free_getdiag(PLpgSQL_stmt_getdiag *stmt) |
no test coverage detected