This is optimized for null partitioning and merging along the first sort key. Other sort keys are delegated to the Comparator class.
| 647 | // This is optimized for null partitioning and merging along the first sort key. |
| 648 | // Other sort keys are delegated to the Comparator class. |
| 649 | Status Sort() { |
| 650 | ARROW_RETURN_NOT_OK(status_); |
| 651 | return SortInternal(); |
| 652 | } |
| 653 | |
| 654 | private: |
| 655 | static RecordBatchVector MakeBatches(const Table& table, Status* status) { |
no outgoing calls
no test coverage detected