| 128 | } |
| 129 | |
| 130 | Node * |
| 131 | gpdb::MutateExpressionTree(Node *node, Node *(*mutator)(Node *, void *), void *context) |
| 132 | { |
| 133 | GP_WRAP_START; |
| 134 | { |
| 135 | return expression_tree_mutator_wrapper(node, mutator, context); |
| 136 | } |
| 137 | GP_WRAP_END; |
| 138 | return nullptr; |
| 139 | } |
| 140 | |
| 141 | bool |
| 142 | gpdb::WalkExpressionTree(Node *node, bool (*walker)(Node *, void *), void *context) |
nothing calls this directly
no test coverage detected