reportValuesPredicate is a "fake" predicate that uses existing iterator logic to find all values in a given column
| 425 | |
| 426 | // reportValuesPredicate is a "fake" predicate that uses existing iterator logic to find all values in a given column |
| 427 | type reportValuesPredicate struct { |
| 428 | cb common.TagValuesCallbackV2 |
| 429 | } |
| 430 | |
| 431 | func newReportValuesPredicate(cb common.TagValuesCallbackV2) *reportValuesPredicate { |
| 432 | return &reportValuesPredicate{cb: cb} |
nothing calls this directly
no outgoing calls
no test coverage detected