KeepValue is only called if this column does not have a dictionary. Just report everything to r.cb and return false so the iterator do any extra work.
(v parquet.Value)
| 468 | // KeepValue is only called if this column does not have a dictionary. Just report everything to r.cb and |
| 469 | // return false so the iterator do any extra work. |
| 470 | func (r *reportValuesPredicate) KeepValue(v parquet.Value) bool { |
| 471 | callback(r.cb, v) |
| 472 | |
| 473 | return false |
| 474 | } |
| 475 | |
| 476 | func callback(cb common.TagValuesCallbackV2, v parquet.Value) (stop bool) { |
| 477 | switch v.Kind() { |
nothing calls this directly
no test coverage detected