yyy1000 commented on PR #9469:
URL: 
https://github.com/apache/arrow-datafusion/pull/9469#issuecomment-1979279090

   The CI fails because PartialSort will replace Sort in some test cases like 
below, I can change that if others in this PR looks good.
   ```
   expected:
   
   [
       "SortPreservingMergeExec: [a@0 ASC,b@1 ASC]",
       "  SortExec: expr=[a@0 ASC,b@1 ASC,c@2 ASC]",
       "    RepartitionExec: partitioning=RoundRobinBatch(10), 
input_partitions=1",
       "      CsvExec: file_groups={1 group: [[x]]}, projection=[a, b, c, d, 
e], output_ordering=[a@0 ASC, b@1 ASC], has_header=false",
   ]
   actual:
   
   [
       "SortPreservingMergeExec: [a@0 ASC,b@1 ASC]",
       "  PartialSortExec: expr=[a@0 ASC,b@1 ASC,c@2 ASC], 
common_prefix_length=[2]",
       "    RepartitionExec: partitioning=RoundRobinBatch(10), 
input_partitions=1",
       "      CsvExec: file_groups={1 group: [[x]]}, projection=[a, b, c, d, 
e], output_ordering=[a@0 ASC, b@1 ASC], has_header=false",
   ]
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to