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)
| 454 | // KeepValue is only called if this column does not have a dictionary. Just report everything to r.cb and |
| 455 | // return false so the iterator do any extra work. |
| 456 | func (r *reportValuesPredicate) KeepValue(v parquet.Value) bool { |
| 457 | callback(r.cb, v) |
| 458 | |
| 459 | return false |
| 460 | } |
| 461 | |
| 462 | func callback(cb common.TagValuesCallbackV2, v parquet.Value) (stop bool) { |
| 463 | switch v.Kind() { |
nothing calls this directly
no test coverage detected