| 444 | } |
| 445 | |
| 446 | type InstrumentedPredicate struct { |
| 447 | Pred Predicate // Optional, if missing then just keeps metrics with no filtering |
| 448 | InspectedColumnChunks int64 |
| 449 | InspectedPages int64 |
| 450 | InspectedValues int64 |
| 451 | KeptColumnChunks int64 |
| 452 | KeptPages int64 |
| 453 | KeptValues int64 |
| 454 | } |
| 455 | |
| 456 | var _ Predicate = (*InstrumentedPredicate)(nil) |
| 457 |
nothing calls this directly
no outgoing calls
no test coverage detected