@@ -255,7 +255,7 @@ async fn sort_preserving_merge() {
255255 "| plan_type | plan |" ,
256256 "+---------------+--------------------------------------------------------------------------------------------------------------------------+" ,
257257 "| logical_plan | Sort: t.a ASC NULLS LAST, t.b ASC NULLS LAST, fetch=10 |" ,
258- "| | TableScan: t projection=[a, b] |" ,
258+ "| | TableScan: t projection=[a, b] preferred_ordering=[t.a ASC NULLS LAST, t.b ASC NULLS LAST] |" ,
259259 "| physical_plan | SortPreservingMergeExec: [a@0 ASC NULLS LAST, b@1 ASC NULLS LAST], fetch=10 |" ,
260260 "| | DataSourceExec: partitions=2, partition_sizes=[5, 5], fetch=10, output_ordering=a@0 ASC NULLS LAST, b@1 ASC NULLS LAST |" ,
261261 "| | |" ,
@@ -303,7 +303,7 @@ async fn sort_spill_reservation() {
303303 "| plan_type | plan |" ,
304304 "+---------------+-------------------------------------------------------------------------------------------------------------+" ,
305305 "| logical_plan | Sort: t.a ASC NULLS LAST, t.b DESC NULLS FIRST |" ,
306- "| | TableScan: t projection=[a, b] |" ,
306+ "| | TableScan: t projection=[a, b] preferred_ordering=[t.a ASC NULLS LAST, t.b DESC NULLS FIRST] |" ,
307307 "| physical_plan | SortExec: expr=[a@0 ASC NULLS LAST, b@1 DESC], preserve_partitioning=[false] |" ,
308308 "| | DataSourceExec: partitions=1, partition_sizes=[5], output_ordering=a@0 ASC NULLS LAST, b@1 ASC NULLS LAST |" ,
309309 "| | |" ,
0 commit comments