aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/MySQL/ASTDeclareTableOptions.h
blob: 38697eae75485af1ace2b0103c6fb81eed4e0d97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <Parsers/IParserBase.h>

namespace DB
{

namespace MySQLParser
{

class ParserDeclareTableOptions : public IParserBase
{
protected:
    const char * getName() const override { return "table options declaration"; }

    bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};

}

}