(c *ColumnChunkHelper)
| 463 | } |
| 464 | |
| 465 | func (p *InstrumentedPredicate) KeepColumnChunk(c *ColumnChunkHelper) bool { |
| 466 | p.InspectedColumnChunks++ |
| 467 | |
| 468 | if p.Pred == nil || p.Pred.KeepColumnChunk(c) { |
| 469 | p.KeptColumnChunks++ |
| 470 | return true |
| 471 | } |
| 472 | |
| 473 | return false |
| 474 | } |
| 475 | |
| 476 | func (p *InstrumentedPredicate) KeepPage(page pq.Page) bool { |
| 477 | p.InspectedPages++ |
nothing calls this directly
no test coverage detected