| 118 | AnyPredicate(Reference<IExpression> expr, Reference<IPredicate> pred) : expr(expr), pred(pred) {} |
| 119 | |
| 120 | std::string toString() override { |
| 121 | return format("ANY(%s matching %s)", expr->toString().c_str(), pred->toString().c_str()); |
| 122 | } |
| 123 | bool wantsNulls() override { return false; } |
| 124 | }; |
| 125 |
nothing calls this directly
no outgoing calls
no test coverage detected