Skip to content

Commit

Permalink
brain defaults to intmap
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Oct 11, 2024
1 parent ad631cd commit ffca763
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/store/re_chunk_store/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,8 @@ pub struct ChunkStore {
// different datatype for a given component.
pub(crate) type_registry: IntMap<ComponentName, ArrowDataType>,

pub(crate) per_column_metadata: IntMap<EntityPath, IntMap<ComponentName, ColumnMetadataState>>,
pub(crate) per_column_metadata:
BTreeMap<EntityPath, BTreeMap<ComponentName, ColumnMetadataState>>,

pub(crate) chunks_per_chunk_id: BTreeMap<ChunkId, Arc<Chunk>>,

Expand Down

0 comments on commit ffca763

Please sign in to comment.