diff --git a/arrow/src/ffi.rs b/arrow/src/ffi.rs index 72f69d846dfe..4f0fedafa310 100644 --- a/arrow/src/ffi.rs +++ b/arrow/src/ffi.rs @@ -295,6 +295,7 @@ impl Drop for FFI_ArrowSchema { // returns the number of bits that buffer `i` (in the C data interface) is expected to have. // This is set by the Arrow specification +#[allow(clippy::manual_bits)] fn bit_width(data_type: &DataType, i: usize) -> Result { Ok(match (data_type, i) { // the null buffer is bit sized diff --git a/parquet/src/arrow/schema.rs b/parquet/src/arrow/schema.rs index 72061e8ad5c4..049d7c4f4de1 100644 --- a/parquet/src/arrow/schema.rs +++ b/parquet/src/arrow/schema.rs @@ -662,6 +662,7 @@ impl ParquetTypeConverter<'_> { } } + #[allow(clippy::wrong_self_convention)] fn from_int32(&self) -> Result { match ( self.schema.get_basic_info().logical_type(), @@ -707,6 +708,7 @@ impl ParquetTypeConverter<'_> { } } + #[allow(clippy::wrong_self_convention)] fn from_int64(&self) -> Result { match ( self.schema.get_basic_info().logical_type(), @@ -758,6 +760,7 @@ impl ParquetTypeConverter<'_> { } } + #[allow(clippy::wrong_self_convention)] fn from_fixed_len_byte_array(&self) -> Result { match ( self.schema.get_basic_info().logical_type(), @@ -796,6 +799,7 @@ impl ParquetTypeConverter<'_> { ) } + #[allow(clippy::wrong_self_convention)] fn from_byte_array(&self) -> Result { match (self.schema.get_basic_info().logical_type(), self.schema.get_basic_info().converted_type()) { (Some(LogicalType::STRING(_)), _) => Ok(DataType::Utf8),