ClickHouse/src/Planner/PlannerSorting.h

15 lines
274 B
C++
Raw Normal View History

2022-08-26 13:06:14 +00:00
#pragma once
#include <Core/SortDescription.h>
#include <Planner/PlannerContext.h>
namespace DB
{
2022-09-12 14:14:40 +00:00
/// Extract sort description from order by node
2022-08-26 13:06:14 +00:00
SortDescription extractSortDescription(const QueryTreeNodePtr & order_by_node, const PlannerContext & planner_context);
}