reportValuesPredicate is a "fake" predicate that uses existing iterator logic to find all values in a given column
| 414 | |
| 415 | // reportValuesPredicate is a "fake" predicate that uses existing iterator logic to find all values in a given column |
| 416 | type reportValuesPredicate struct { |
| 417 | cb common.TagValuesCallbackV2 |
| 418 | } |
| 419 | |
| 420 | func newReportValuesPredicate(cb common.TagValuesCallbackV2) *reportValuesPredicate { |
| 421 | return &reportValuesPredicate{cb: cb} |
nothing calls this directly
no outgoing calls
no test coverage detected