| 2852 | |
| 2853 | |
| 2854 | void InterpreterSelectQuery::executeMergeSorted(QueryPlan & query_plan, const std::string & description) |
| 2855 | { |
| 2856 | auto & query = getSelectQuery(); |
| 2857 | SortDescription order_descr = getSortDescription(query, context); |
| 2858 | UInt64 limit = getLimitForSorting(query, context); |
| 2859 | |
| 2860 | executeMergeSorted(query_plan, order_descr, limit, description); |
| 2861 | } |
| 2862 | |
| 2863 | void InterpreterSelectQuery::executeMergeSorted(QueryPlan & query_plan, const SortDescription & sort_description, UInt64 limit, const std::string & description) |
| 2864 | { |
nothing calls this directly
no test coverage detected