We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24478f7 commit 8fb36e9Copy full SHA for 8fb36e9
1 file changed
src/lib.rs
@@ -275,8 +275,8 @@ impl CodecPipelineImpl {
275
// Assemble partial decoders ahead of time and in parallel
276
let partial_chunk_descriptions = chunk_descriptions
277
.iter()
278
- .unique_by(|item| item.key())
279
.filter(|item| !(is_whole_chunk(item)))
+ .unique_by(|item| item.key())
280
.collect::<Vec<_>>();
281
let mut partial_decoder_cache: HashMap<StoreKey, Arc<dyn ArrayPartialDecoderTraits>> =
282
HashMap::new().into();
0 commit comments