---------------- * ExecAssignScanType * ---------------- */
| 724 | * ---------------- |
| 725 | */ |
| 726 | void |
| 727 | ExecAssignScanType(ScanState *scanstate, TupleDesc tupDesc) |
| 728 | { |
| 729 | TupleTableSlot *slot = scanstate->ss_ScanTupleSlot; |
| 730 | |
| 731 | ExecSetSlotDescriptor(slot, tupDesc); |
| 732 | } |
| 733 | |
| 734 | /* ---------------- |
| 735 | * ExecCreateScanSlotFromOuterPlan |
nothing calls this directly
no test coverage detected