| 1722 | } |
| 1723 | |
| 1724 | bool |
| 1725 | gpdb::WalkQueryOrExpressionTree(Node *node, bool (*walker)(Node *, void *), void *context, |
| 1726 | int flags) |
| 1727 | { |
| 1728 | GP_WRAP_START; |
| 1729 | { |
| 1730 | return query_or_expression_tree_walker_wrapper(node, walker, context, flags); |
| 1731 | } |
| 1732 | GP_WRAP_END; |
| 1733 | return false; |
| 1734 | } |
| 1735 | |
| 1736 | Node * |
| 1737 | gpdb::MutateQueryOrExpressionTree(Node *node, Node *(*mutator)(Node *, void *), void *context, |
nothing calls this directly
no test coverage detected