@@ -660,6 +660,7 @@ impl ParquetTypeConverter<'_> {
660
660
}
661
661
}
662
662
663
+ #[ allow( clippy:: wrong_self_convention) ]
663
664
fn from_int32 ( & self ) -> Result < DataType > {
664
665
match (
665
666
self . schema . get_basic_info ( ) . logical_type ( ) ,
@@ -705,6 +706,7 @@ impl ParquetTypeConverter<'_> {
705
706
}
706
707
}
707
708
709
+ #[ allow( clippy:: wrong_self_convention) ]
708
710
fn from_int96 ( & self ) -> Result < DataType > {
709
711
match (
710
712
self . schema . get_basic_info ( ) . logical_type ( ) ,
@@ -735,6 +737,7 @@ impl ParquetTypeConverter<'_> {
735
737
}
736
738
}
737
739
740
+ #[ allow( clippy:: wrong_self_convention) ]
738
741
fn from_int64 ( & self ) -> Result < DataType > {
739
742
match (
740
743
self . schema . get_basic_info ( ) . logical_type ( ) ,
@@ -795,6 +798,7 @@ impl ParquetTypeConverter<'_> {
795
798
}
796
799
}
797
800
801
+ #[ allow( clippy:: wrong_self_convention) ]
798
802
fn from_fixed_len_byte_array ( & self ) -> Result < DataType > {
799
803
match (
800
804
self . schema . get_basic_info ( ) . logical_type ( ) ,
@@ -833,6 +837,7 @@ impl ParquetTypeConverter<'_> {
833
837
)
834
838
}
835
839
840
+ #[ allow( clippy:: wrong_self_convention) ]
836
841
fn from_byte_array ( & self ) -> Result < DataType > {
837
842
match ( self . schema . get_basic_info ( ) . logical_type ( ) , self . schema . get_basic_info ( ) . converted_type ( ) ) {
838
843
( Some ( LogicalType :: STRING ( _) ) , _) => Ok ( DataType :: Utf8 ) ,
0 commit comments