* Show the target of a ModifyTable node * * Here we show the nominal target (ie, the relation that was named in the * original query). If the actual target(s) is/are different, we'll show them * in show_modifytable_info(). */
| 4757 | * in show_modifytable_info(). |
| 4758 | */ |
| 4759 | static void |
| 4760 | ExplainModifyTarget(ModifyTable *plan, ExplainState *es) |
| 4761 | { |
| 4762 | ExplainTargetRel((Plan *) plan, plan->nominalRelation, es); |
| 4763 | } |
| 4764 | |
| 4765 | /* |
| 4766 | * Show the target relation of a scan or modify node |
no test coverage detected