* Version of walker that uses no flags. */
| 1154 | * Version of walker that uses no flags. |
| 1155 | */ |
| 1156 | CdbVisitOpt |
| 1157 | planstate_walk_node(PlanState *planstate, |
| 1158 | CdbVisitOpt (*walker) (PlanState *planstate, void *context), |
| 1159 | void *context) |
| 1160 | { |
| 1161 | return planstate_walk_node_extended(planstate, walker, context, 0); |
| 1162 | } |
| 1163 | |
| 1164 | /** |
| 1165 | * Workhorse walker that uses flags. |
no test coverage detected