* Destroy a tuple queue reader. * * Note: cleaning up the underlying shm_mq is the caller's responsibility. * We won't access it here, as it may be detached already. */
| 152 | * We won't access it here, as it may be detached already. |
| 153 | */ |
| 154 | void |
| 155 | DestroyTupleQueueReader(TupleQueueReader *reader) |
| 156 | { |
| 157 | pfree(reader); |
| 158 | } |
| 159 | |
| 160 | /* |
| 161 | * Fetch a tuple from a tuple queue reader. |
no test coverage detected