* ExecCopySlotMinimalTuple - return MinimalTuple allocated in caller's context */
| 462 | * ExecCopySlotMinimalTuple - return MinimalTuple allocated in caller's context |
| 463 | */ |
| 464 | static inline MinimalTuple |
| 465 | ExecCopySlotMinimalTuple(TupleTableSlot *slot) |
| 466 | { |
| 467 | return slot->tts_ops->copy_minimal_tuple(slot); |
| 468 | } |
| 469 | |
| 470 | /* |
| 471 | * ExecCopySlot - copy one slot's contents into another. |
no outgoing calls
no test coverage detected