Distinct Predicate
| 519 | |
| 520 | // Distinct Predicate |
| 521 | DistinctPredicate::DistinctPredicate(const std::string& fieldName) : _fieldName(fieldName) {} |
| 522 | |
| 523 | Future<bool> DistinctPredicate::evaluate(Reference<IReadContext> const& context) { |
| 524 | Future<DataValue> fdv = getMaybeRecursive(context, StringRef()); |
nothing calls this directly
no outgoing calls
no test coverage detected