| 712 | } |
| 713 | |
| 714 | static void |
| 715 | free_expr(PLpgSQL_expr *expr) |
| 716 | { |
| 717 | if (expr && expr->plan) |
| 718 | { |
| 719 | SPI_freeplan(expr->plan); |
| 720 | expr->plan = NULL; |
| 721 | } |
| 722 | } |
| 723 | |
| 724 | void |
| 725 | plpgsql_free_function_memory(PLpgSQL_function *func) |
no test coverage detected