forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTCreateQuery.h
51 lines (38 loc) · 1020 Bytes
/
ASTCreateQuery.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once
#include <Parsers/IAST.h>
#include <Parsers/IParserBase.h>
namespace DB
{
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
}
namespace MySQLParser
{
class ASTCreateQuery : public IAST
{
public:
bool temporary{false};
bool if_not_exists{false};
String table;
String database;
ASTPtr like_table;
ASTPtr columns_list;
ASTPtr table_options;
ASTPtr partition_options;
ASTPtr clone() const override;
String getID(char) const override { return "create query"; }
protected:
void formatImpl(const FormatSettings & /*settings*/, FormatState & /*state*/, FormatStateStacked /*frame*/) const override
{
throw Exception("Method formatImpl is not supported by MySQLParser::ASTCreateQuery.", ErrorCodes::NOT_IMPLEMENTED);
}
};
class ParserCreateQuery : public IParserBase
{
protected:
const char * getName() const override { return "create query"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};
}
}