| 614 | extern void ExecCloseResultRelations(EState *estate); |
| 615 | |
| 616 | static inline RangeTblEntry * |
| 617 | exec_rt_fetch(Index rti, EState *estate) |
| 618 | { |
| 619 | return (RangeTblEntry *) list_nth(estate->es_range_table, rti - 1); |
| 620 | } |
| 621 | |
| 622 | extern Relation ExecGetRangeTableRelation(EState *estate, Index rti); |
| 623 | extern void ExecInitResultRelation(EState *estate, ResultRelInfo *resultRelInfo, |
no test coverage detected