@@ -823,7 +823,7 @@ mod tests {
823
823
HashSet :: from( [ DataType :: Utf8 ] ) , // col5
824
824
] ;
825
825
826
- let schema = build_schema_helper ( column_names, & column_type_possibilities) ;
826
+ let schema = build_schema_helper ( column_names, column_type_possibilities) ;
827
827
828
828
// Verify schema has 5 columns
829
829
assert_eq ! ( schema. fields( ) . len( ) , 5 ) ;
@@ -853,7 +853,7 @@ mod tests {
853
853
HashSet :: from( [ DataType :: Utf8 ] ) , // Should remain Utf8
854
854
] ;
855
855
856
- let schema = build_schema_helper ( column_names, & column_type_possibilities) ;
856
+ let schema = build_schema_helper ( column_names, column_type_possibilities) ;
857
857
858
858
// col1 should be Float64 due to Int64 + Float64 = Float64
859
859
assert_eq ! ( * schema. field( 0 ) . data_type( ) , DataType :: Float64 ) ;
@@ -871,7 +871,7 @@ mod tests {
871
871
HashSet :: from( [ DataType :: Boolean , DataType :: Int64 , DataType :: Utf8 ] ) , // Should resolve to Utf8 due to conflicts
872
872
] ;
873
873
874
- let schema = build_schema_helper ( column_names, & column_type_possibilities) ;
874
+ let schema = build_schema_helper ( column_names, column_type_possibilities) ;
875
875
876
876
// Should default to Utf8 for conflicting types
877
877
assert_eq ! ( * schema. field( 0 ) . data_type( ) , DataType :: Utf8 ) ;
0 commit comments