forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTExternalDDLQuery.h
43 lines (33 loc) · 1.03 KB
/
ASTExternalDDLQuery.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
#pragma once
#include <IO/Operators.h>
#include <Parsers/ASTFunction.h>
#include <Parsers/IAST.h>
namespace DB
{
class ASTExternalDDLQuery : public IAST
{
public:
ASTFunction * from;
ASTPtr external_ddl;
ASTPtr clone() const override
{
auto res = std::make_shared<ASTExternalDDLQuery>(*this);
res->children.clear();
if (from)
res->set(res->from, from->clone());
if (external_ddl)
{
res->external_ddl = external_ddl->clone();
res->children.emplace_back(res->external_ddl);
}
return res;
}
String getID(char) const override { return "external ddl query"; }
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked stacked) const override
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << "EXTERNAL DDL FROM " << (settings.hilite ? hilite_none : "");
from->formatImpl(settings, state, stacked);
external_ddl->formatImpl(settings, state, stacked);
}
};
}