| 200 | |
| 201 | |
| 202 | void stableGetPermutation(const Block & block, const SortDescription & description, IColumn::Permutation & out_permutation) |
| 203 | { |
| 204 | if (!block) |
| 205 | return; |
| 206 | |
| 207 | getBlockSortPermutationImpl(block, description, IColumn::PermutationSortStability::Stable, 0, out_permutation); |
| 208 | } |
| 209 | |
| 210 | bool isAlreadySorted(const Block & block, const SortDescription & description) |
| 211 | { |
no test coverage detected