ClickHouse/src/Planner/PlannerSorting.h
2022-10-24 10:22:20 +02:00

15 lines
274 B
C++

#pragma once
#include <Core/SortDescription.h>
#include <Planner/PlannerContext.h>
namespace DB
{
/// Extract sort description from order by node
SortDescription extractSortDescription(const QueryTreeNodePtr & order_by_node, const PlannerContext & planner_context);
}