MCPcopy Create free account
hub / github.com/apache/cloudberry / planstate_walk_members

Function planstate_walk_members

src/backend/nodes/nodeFuncs.c:4417–4430  ·  view source on GitHub ↗

* Walk the constituent plans of a ModifyTable, Append, MergeAppend, * BitmapAnd, or BitmapOr node. */

Source from the content-addressed store, hash-verified

4415 * BitmapAnd, or BitmapOr node.
4416 */
4417static bool
4418planstate_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
4432bool
4433query_or_expression_tree_walker_wrapper(Node *node,

Callers 1

planstate_tree_walkerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected