Skip to content

Commit

Permalink
comment out unused
Browse files Browse the repository at this point in the history
Signed-off-by: jayzhan211 <[email protected]>
  • Loading branch information
jayzhan211 committed Aug 31, 2024
1 parent b818d84 commit 9d8dbea
Show file tree
Hide file tree
Showing 3 changed files with 377 additions and 403 deletions.
6 changes: 3 additions & 3 deletions datafusion/physical-expr-common/src/binary_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ where
}

/// The size, in number of entries, of the initial hash table
pub(crate) const INITIAL_MAP_CAPACITY: usize = 128;
pub(super) const INITIAL_MAP_CAPACITY: usize = 128;
/// The initial size, in bytes, of the string data
pub(crate) const INITIAL_BUFFER_CAPACITY: usize = 8 * 1024;
pub(super) const INITIAL_BUFFER_CAPACITY: usize = 8 * 1024;
impl<O: OffsetSizeTrait, V> ArrowBytesMap<O, V>
where
V: Debug + PartialEq + Eq + Clone + Copy + Default,
Expand Down Expand Up @@ -574,7 +574,7 @@ where
}

/// Maximum size of a value that can be inlined in the hash table
pub(crate) const SHORT_VALUE_LEN: usize = mem::size_of::<usize>();
const SHORT_VALUE_LEN: usize = mem::size_of::<usize>();

/// Entry in the hash table -- see [`ArrowBytesMap`] for more details
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
Expand Down
Loading

0 comments on commit 9d8dbea

Please sign in to comment.