* Walk the constituent plans of a ModifyTable, Append, MergeAppend, * BitmapAnd, or BitmapOr node. */
| 4415 | * BitmapAnd, or BitmapOr node. |
| 4416 | */ |
| 4417 | static bool |
| 4418 | planstate_walk_members(PlanState **planstates, int nplans, |
| 4419 | bool (*walker) (), void *context) |
| 4420 | { |
| 4421 | int j; |
| 4422 | |
| 4423 | for (j = 0; j < nplans; j++) |
| 4424 | { |
| 4425 | if (walker(planstates[j], context)) |
| 4426 | return true; |
| 4427 | } |
| 4428 | |
| 4429 | return false; |
| 4430 | } |
| 4431 | |
| 4432 | bool |
| 4433 | query_or_expression_tree_walker_wrapper(Node *node, |
no outgoing calls
no test coverage detected