| 464 | } |
| 465 | |
| 466 | static void |
| 467 | free_stmts(List *stmts) |
| 468 | { |
| 469 | ListCell *s; |
| 470 | |
| 471 | foreach(s, stmts) |
| 472 | { |
| 473 | free_stmt((PLpgSQL_stmt *) lfirst(s)); |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | static void |
| 478 | free_block(PLpgSQL_stmt_block *block) |
no test coverage detected