| 1140 | } |
| 1141 | |
| 1142 | Result<NullPartitionResult> SortChunkedArray(ExecContext* ctx, uint64_t* indices_begin, |
| 1143 | uint64_t* indices_end, |
| 1144 | const ChunkedArray& chunked_array, |
| 1145 | SortOrder sort_order, |
| 1146 | NullPlacement null_placement) { |
| 1147 | auto physical_type = GetPhysicalType(chunked_array.type()); |
| 1148 | auto physical_chunks = GetPhysicalChunks(chunked_array, physical_type); |
| 1149 | return SortChunkedArray(ctx, indices_begin, indices_end, physical_type, physical_chunks, |
| 1150 | sort_order, null_placement); |
| 1151 | } |
| 1152 | |
| 1153 | Result<NullPartitionResult> SortChunkedArray( |
| 1154 | ExecContext* ctx, uint64_t* indices_begin, uint64_t* indices_end, |
no test coverage detected