You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use dynamic fastfield codes for multivalues fixes (only sorting case covered)
Rename get to get_val due to conflict with Vec
use u64 precision instead of u32 for get_range, to allow use of existing fast field interface interface (actually not sure if it would be better have a different interface)
Currently, we can use 3 different codecs for single value fast field:
Bitpacked
,LinearInterpol
andMultiLinearInterpol
.But this is not the case for
MultiValuedFastFieldReader
where the only available codec for the data isBitpackedFastFieldReader
, see code.The request is thus to replace the harcoded
BitpackedFastFieldReader
by the enumDynamicFastFieldReader
for theMultiValuedFastFieldReader
.The text was updated successfully, but these errors were encountered: