aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/Kusto/ParserKQLSort.h
blob: d9afefc196c886c3cdaa8625213c11ef00052bae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <Parsers/IParserBase.h>
#include <Parsers/Kusto/ParserKQLQuery.h>

namespace DB
{

class ParserKQLSort : public ParserKQLBase
{
protected:
    const char * getName() const override { return "KQL order by"; }
    bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};

}