File tree Expand file tree Collapse file tree
datafusion-federation/src
optimize/optimize_projections
sql/optimizer/optimize_projections Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -862,7 +862,7 @@ mod tests {
862862 let table2_scan = scan_empty ( Some ( "test2" ) , & schema, None ) ?. build ( ) ?;
863863
864864 let plan = LogicalPlanBuilder :: from ( table_scan)
865- . join_using ( table2_scan, JoinType :: Left , vec ! [ "a" ] ) ?
865+ . join_using ( table2_scan, JoinType :: Left , vec ! [ "a" . into ( ) ] ) ?
866866 . project ( vec ! [ col( "a" ) , col( "b" ) ] ) ?
867867 . build ( ) ?;
868868
Original file line number Diff line number Diff line change @@ -857,7 +857,7 @@ mod tests {
857857 let table2_scan = scan_empty ( Some ( "test2" ) , & schema, None ) ?. build ( ) ?;
858858
859859 let plan = LogicalPlanBuilder :: from ( table_scan)
860- . join_using ( table2_scan, JoinType :: Left , vec ! [ "a" ] ) ?
860+ . join_using ( table2_scan, JoinType :: Left , vec ! [ "a" . into ( ) ] ) ?
861861 . project ( vec ! [ col( "a" ) , col( "b" ) ] ) ?
862862 . build ( ) ?;
863863
You can’t perform that action at this time.
0 commit comments