| 662 | } |
| 663 | |
| 664 | void |
| 665 | PLy_spi_subtransaction_commit(MemoryContext oldcontext, ResourceOwner oldowner) |
| 666 | { |
| 667 | /* Commit the inner transaction, return to outer xact context */ |
| 668 | ReleaseCurrentSubTransaction(); |
| 669 | MemoryContextSwitchTo(oldcontext); |
| 670 | CurrentResourceOwner = oldowner; |
| 671 | } |
| 672 | |
| 673 | void |
| 674 | PLy_spi_subtransaction_abort(MemoryContext oldcontext, ResourceOwner oldowner) |
no test coverage detected