| 341 | // Distinct Predicate |
| 342 | struct DistinctPredicate : IPredicate, ReferenceCounted<DistinctPredicate>, FastAllocated<DistinctPredicate> { |
| 343 | void addref() override { ReferenceCounted<DistinctPredicate>::addref(); } |
| 344 | void delref() override { ReferenceCounted<DistinctPredicate>::delref(); } |
| 345 | |
| 346 | explicit DistinctPredicate(const std::string& fieldName); |
nothing calls this directly
no outgoing calls
no test coverage detected