* Get list of OIDs assigned in this transaction, since the last call. */
| 1555 | * Get list of OIDs assigned in this transaction, since the last call. |
| 1556 | */ |
| 1557 | List * |
| 1558 | GetAssignedOidsForDispatch(void) |
| 1559 | { |
| 1560 | List *l; |
| 1561 | |
| 1562 | l = dispatch_oids; |
| 1563 | dispatch_oids = NIL; |
| 1564 | return l; |
| 1565 | } |
| 1566 | |
| 1567 | /* |
| 1568 | * Called at end-of-transaction. There is normally nothing to do, |
no outgoing calls
no test coverage detected