* Show the target of a Scan node */
| 4744 | * Show the target of a Scan node |
| 4745 | */ |
| 4746 | static void |
| 4747 | ExplainScanTarget(Scan *plan, ExplainState *es) |
| 4748 | { |
| 4749 | ExplainTargetRel((Plan *) plan, plan->scanrelid, es); |
| 4750 | } |
| 4751 | |
| 4752 | /* |
| 4753 | * Show the target of a ModifyTable node |
no test coverage detected