mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
15 lines
274 B
C++
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);
|
|
|
|
}
|
|
|