---------------- * ExecInitResultTypeTL * * Initialize result type, using the plan node's targetlist. * ---------------- */
| 1769 | * ---------------- |
| 1770 | */ |
| 1771 | void |
| 1772 | ExecInitResultTypeTL(PlanState *planstate) |
| 1773 | { |
| 1774 | TupleDesc tupDesc = ExecTypeFromTL(planstate->plan->targetlist); |
| 1775 | |
| 1776 | planstate->ps_ResultTupleDesc = tupDesc; |
| 1777 | } |
| 1778 | |
| 1779 | /* -------------------------------- |
| 1780 | * ExecInit{Result,Scan,Extra}TupleSlot[TL] |
no test coverage detected