Skip to content

Commit 9d8dbea

Browse files
committed
comment out unused
Signed-off-by: jayzhan211 <[email protected]>
1 parent b818d84 commit 9d8dbea

File tree

3 files changed

+377
-403
lines changed

3 files changed

+377
-403
lines changed

datafusion/physical-expr-common/src/binary_map.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ where
235235
}
236236

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

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

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

0 commit comments

Comments
 (0)