-------------------------------- * MakeSingleTupleTableSlot * * This is a convenience routine for operations that need a standalone * TupleTableSlot not gotten from the main executor tuple table. It makes * a single slot of given TupleTableSlotType and initializes it to use the * given tuple descriptor. * -------------------------------- */
| 1252 | * -------------------------------- |
| 1253 | */ |
| 1254 | TupleTableSlot * |
| 1255 | MakeSingleTupleTableSlot(TupleDesc tupdesc, |
| 1256 | const TupleTableSlotOps *tts_ops) |
| 1257 | { |
| 1258 | TupleTableSlot *slot = MakeTupleTableSlot(tupdesc, tts_ops); |
| 1259 | |
| 1260 | return slot; |
| 1261 | } |
| 1262 | |
| 1263 | /* -------------------------------- |
| 1264 | * ExecDropSingleTupleTableSlot |
no test coverage detected