-------------------------------- * ExecAllocTableSlot * * Create a tuple table slot within a tuple table (which is just a List). * -------------------------------- */
| 1185 | * -------------------------------- |
| 1186 | */ |
| 1187 | TupleTableSlot * |
| 1188 | ExecAllocTableSlot(List **tupleTable, TupleDesc desc, |
| 1189 | const TupleTableSlotOps *tts_ops) |
| 1190 | { |
| 1191 | TupleTableSlot *slot = MakeTupleTableSlot(desc, tts_ops); |
| 1192 | |
| 1193 | *tupleTable = lappend(*tupleTable, slot); |
| 1194 | |
| 1195 | return slot; |
| 1196 | } |
| 1197 | |
| 1198 | /* -------------------------------- |
| 1199 | * ExecResetTupleTable |
no test coverage detected