aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/Kusto/ParserKQLLimit.h
blob: 1585805f0fc47f1f7c3a1284eb6b98e898175db4 (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 ParserKQLLimit : public ParserKQLBase
{
protected:
    const char * getName() const override { return "KQL limit"; }
    bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};

}