* ExecClearTuple - clear the slot's contents */
| 424 | * ExecClearTuple - clear the slot's contents |
| 425 | */ |
| 426 | static inline TupleTableSlot * |
| 427 | ExecClearTuple(TupleTableSlot *slot) |
| 428 | { |
| 429 | slot->tts_ops->clear(slot); |
| 430 | |
| 431 | return slot; |
| 432 | } |
| 433 | |
| 434 | /* ExecMaterializeSlot - force a slot into the "materialized" state. |
| 435 | * |