| 515 | } |
| 516 | |
| 517 | static void |
| 518 | free_case(PLpgSQL_stmt_case *stmt) |
| 519 | { |
| 520 | ListCell *l; |
| 521 | |
| 522 | free_expr(stmt->t_expr); |
| 523 | foreach(l, stmt->case_when_list) |
| 524 | { |
| 525 | PLpgSQL_case_when *cwt = (PLpgSQL_case_when *) lfirst(l); |
| 526 | |
| 527 | free_expr(cwt->expr); |
| 528 | free_stmts(cwt->stmts); |
| 529 | } |
| 530 | free_stmts(stmt->else_stmts); |
| 531 | } |
| 532 | |
| 533 | static void |
| 534 | free_loop(PLpgSQL_stmt_loop *stmt) |
no test coverage detected