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