Skip to content

Commit

Permalink
i be messin up
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Nov 22, 2024
1 parent ad20656 commit d898a4e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions crates/store/re_chunk/src/chunk.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
use std::sync::atomic::{AtomicU64, Ordering};
use std::{
collections::BTreeMap,
sync::atomic::{AtomicU64, Ordering},
};

use arrow2::{
array::{
Expand All @@ -8,7 +11,6 @@ use arrow2::{
Either,
};

use ahash::HashMap;
use itertools::{izip, Itertools};
use nohash_hasher::IntMap;

Expand Down Expand Up @@ -462,7 +464,7 @@ impl Chunk {
)
)
})
.fold(HashMap::default(), |mut acc, (time, is_valid)| {
.fold(BTreeMap::default(), |mut acc, (time, is_valid)| {
*acc.entry(time).or_default() += is_valid;
acc
})
Expand Down

0 comments on commit d898a4e

Please sign in to comment.