Skip to content

Commit 13e042e

Browse files
committed
chore: fix clippy
1 parent 674a1b0 commit 13e042e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parquet/src/encodings/encoding/plain_counter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ impl PlainDataSizeCounter {
2626
/// Updates the counter with the given slice.
2727
pub fn update<T: ParquetValueType>(&mut self, values: &[T]) {
2828
let raw_size = match T::PHYSICAL_TYPE {
29-
Type::BOOLEAN => 1 * values.len(),
29+
Type::BOOLEAN => values.len(),
3030
Type::INT32 | Type::FLOAT => 4 * values.len(),
3131
Type::INT64 | Type::DOUBLE => 8 * values.len(),
3232
Type::INT96 => 12 * values.len(),

0 commit comments

Comments
 (0)