Sorting execution strategies.
| Enumerator |
|---|
| IN_PLACE | Sort data in-place (modifies input)
|
| COPY_SORT | Create sorted copy (preserves input)
|
| INDEX_ONLY | Generate sort indices only.
|
| PARTIAL_SORT | Sort only top-K elements.
|
| LAZY_SORT | Lazy evaluation sorting (future: coroutines)
|
| CHUNKED_SORT | Sort in chunks for large datasets.
|
| PARALLEL_SORT | Parallel/concurrent sorting.
|