| 346 | explicit DistinctPredicate(const std::string& fieldName); |
| 347 | TypeCode getTypeCode() const override { return TypeCode::DISTINCT; } |
| 348 | std::string toString() override { return format("(DISTINCT BY : %s)", _fieldName.c_str()); } |
| 349 | Future<bool> evaluate(Reference<IReadContext> const& context) override; |
| 350 | bool wantsNulls() override { return false; } |
| 351 |
nothing calls this directly
no outgoing calls
no test coverage detected