blob: 0b8a18b12c957427aaaae452c2205ba343c2746f (
plain) (
blame)
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
|
#include <Parsers/ASTUndropQuery.h>
#include <Common/quoteString.h>
#include <IO/Operators.h>
namespace DB
{
String ASTUndropQuery::getID(char delim) const
{
return "UndropQuery" + (delim + getDatabase()) + delim + getTable();
}
ASTPtr ASTUndropQuery::clone() const
{
auto res = std::make_shared<ASTUndropQuery>(*this);
cloneOutputOptions(*res);
cloneTableOptions(*res);
return res;
}
void ASTUndropQuery::formatQueryImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "");
settings.ostr << "UNDROP ";
settings.ostr << "TABLE ";
settings.ostr << (settings.hilite ? hilite_none : "");
assert (table);
if (!database)
settings.ostr << backQuoteIfNeed(getTable());
else
settings.ostr << backQuoteIfNeed(getDatabase()) + "." << backQuoteIfNeed(getTable());
if (uuid != UUIDHelpers::Nil)
settings.ostr << (settings.hilite ? hilite_keyword : "") << " UUID " << (settings.hilite ? hilite_none : "")
<< quoteString(toString(uuid));
formatOnCluster(settings);
}
}
|