1 | #pragma once |
---|---|
2 | |
3 | #include <Parsers/IParserBase.h> |
4 | |
5 | namespace DB |
6 | { |
7 | /** Query of form |
8 | * CHECK [TABLE] [database.]table |
9 | */ |
10 | class ParserCheckQuery : public IParserBase |
11 | { |
12 | protected: |
13 | const char * getName() const { return "ALTER query"; } |
14 | bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected); |
15 | }; |
16 | |
17 | } |
18 |