---------------- * ExecCreateScanSlotFromOuterPlan * ---------------- */
| 736 | * ---------------- |
| 737 | */ |
| 738 | void |
| 739 | ExecCreateScanSlotFromOuterPlan(EState *estate, |
| 740 | ScanState *scanstate, |
| 741 | const TupleTableSlotOps *tts_ops) |
| 742 | { |
| 743 | PlanState *outerPlan; |
| 744 | TupleDesc tupDesc; |
| 745 | |
| 746 | outerPlan = outerPlanState(scanstate); |
| 747 | tupDesc = ExecGetResultType(outerPlan); |
| 748 | |
| 749 | ExecInitScanTupleSlot(estate, scanstate, tupDesc, tts_ops); |
| 750 | } |
| 751 | |
| 752 | /* ---------------------------------------------------------------- |
| 753 | * ExecRelationIsTargetRelation |
no test coverage detected