@@ -843,7 +843,7 @@ mod test {
843843 Arc :: new ( LogicalPlan :: EmptyRelation ( EmptyRelation {
844844 produce_one_row : false ,
845845 schema : Arc :: new (
846- DFSchema :: from_unqualifed_fields (
846+ DFSchema :: from_unqualified_fields (
847847 vec ! [ Field :: new( "a" , data_type, true ) ] . into ( ) ,
848848 std:: collections:: HashMap :: new ( ) ,
849849 )
@@ -1081,7 +1081,7 @@ mod test {
10811081 let expr = col ( "a" ) . in_list ( vec ! [ lit( 1_i32 ) , lit( 4_i8 ) , lit( 8_i64 ) ] , false ) ;
10821082 let empty = Arc :: new ( LogicalPlan :: EmptyRelation ( EmptyRelation {
10831083 produce_one_row : false ,
1084- schema : Arc :: new ( DFSchema :: from_unqualifed_fields (
1084+ schema : Arc :: new ( DFSchema :: from_unqualified_fields (
10851085 vec ! [ Field :: new( "a" , DataType :: Decimal128 ( 12 , 4 ) , true ) ] . into ( ) ,
10861086 std:: collections:: HashMap :: new ( ) ,
10871087 ) ?) ,
@@ -1278,7 +1278,7 @@ mod test {
12781278 #[ test]
12791279 fn test_type_coercion_rewrite ( ) -> Result < ( ) > {
12801280 // gt
1281- let schema = Arc :: new ( DFSchema :: from_unqualifed_fields (
1281+ let schema = Arc :: new ( DFSchema :: from_unqualified_fields (
12821282 vec ! [ Field :: new( "a" , DataType :: Int64 , true ) ] . into ( ) ,
12831283 std:: collections:: HashMap :: new ( ) ,
12841284 ) ?) ;
@@ -1289,7 +1289,7 @@ mod test {
12891289 assert_eq ! ( expected, result) ;
12901290
12911291 // eq
1292- let schema = Arc :: new ( DFSchema :: from_unqualifed_fields (
1292+ let schema = Arc :: new ( DFSchema :: from_unqualified_fields (
12931293 vec ! [ Field :: new( "a" , DataType :: Int64 , true ) ] . into ( ) ,
12941294 std:: collections:: HashMap :: new ( ) ,
12951295 ) ?) ;
@@ -1300,7 +1300,7 @@ mod test {
13001300 assert_eq ! ( expected, result) ;
13011301
13021302 // lt
1303- let schema = Arc :: new ( DFSchema :: from_unqualifed_fields (
1303+ let schema = Arc :: new ( DFSchema :: from_unqualified_fields (
13041304 vec ! [ Field :: new( "a" , DataType :: Int64 , true ) ] . into ( ) ,
13051305 std:: collections:: HashMap :: new ( ) ,
13061306 ) ?) ;
@@ -1373,7 +1373,7 @@ mod test {
13731373
13741374 #[ test]
13751375 fn test_case_expression_coercion ( ) -> Result < ( ) > {
1376- let schema = Arc :: new ( DFSchema :: from_unqualifed_fields (
1376+ let schema = Arc :: new ( DFSchema :: from_unqualified_fields (
13771377 vec ! [
13781378 Field :: new( "boolean" , DataType :: Boolean , true ) ,
13791379 Field :: new( "integer" , DataType :: Int32 , true ) ,
0 commit comments