mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
202 lines
6.4 KiB
C++
202 lines
6.4 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/ASTExpressionList.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Parsers/ASTSetQuery.h>
|
|
#include <Parsers/ASTSelectQuery.h>
|
|
#include <Parsers/ASTQueryWithOutput.h>
|
|
#include <Parsers/ASTQueryWithOnCluster.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTStorage : public IAST
|
|
{
|
|
public:
|
|
ASTFunction * engine = nullptr;
|
|
IAST * partition_by = nullptr;
|
|
IAST * order_by = nullptr;
|
|
IAST * sample_by = nullptr;
|
|
ASTSetQuery * settings = nullptr;
|
|
|
|
ASTStorage() = default;
|
|
ASTStorage(StringRange range_) : IAST(range_) {}
|
|
String getID() const override { return "Storage definition"; }
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
auto res = std::make_shared<ASTStorage>(*this);
|
|
res->children.clear();
|
|
|
|
if (engine)
|
|
res->set(res->engine, engine->clone());
|
|
if (partition_by)
|
|
res->set(res->partition_by, partition_by->clone());
|
|
if (order_by)
|
|
res->set(res->order_by, order_by->clone());
|
|
if (sample_by)
|
|
res->set(res->sample_by, sample_by->clone());
|
|
if (settings)
|
|
res->set(res->settings, settings->clone());
|
|
|
|
return res;
|
|
}
|
|
|
|
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override
|
|
{
|
|
if (engine)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << "ENGINE" << (s.hilite ? hilite_none : "") << " = ";
|
|
engine->formatImpl(s, state, frame);
|
|
}
|
|
if (partition_by)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << "PARTITION BY " << (s.hilite ? hilite_none : "");
|
|
partition_by->formatImpl(s, state, frame);
|
|
}
|
|
if (order_by)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << "ORDER BY " << (s.hilite ? hilite_none : "");
|
|
order_by->formatImpl(s, state, frame);
|
|
}
|
|
if (sample_by)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << "SAMPLE BY " << (s.hilite ? hilite_none : "");
|
|
sample_by->formatImpl(s, state, frame);
|
|
}
|
|
if (settings)
|
|
{
|
|
s.ostr << (s.hilite ? hilite_keyword : "") << s.nl_or_ws << "SETTINGS " << (s.hilite ? hilite_none : "");
|
|
settings->formatImpl(s, state, frame);
|
|
}
|
|
|
|
}
|
|
};
|
|
|
|
|
|
/// CREATE TABLE or ATTACH TABLE query
|
|
class ASTCreateQuery : public ASTQueryWithOutput, public ASTQueryWithOnCluster
|
|
{
|
|
public:
|
|
bool attach{false}; /// Query ATTACH TABLE, not CREATE TABLE.
|
|
bool if_not_exists{false};
|
|
bool is_view{false};
|
|
bool is_materialized_view{false};
|
|
bool is_populate{false};
|
|
bool is_temporary{false};
|
|
String database;
|
|
String table;
|
|
ASTExpressionList * columns = nullptr;
|
|
ASTStorage * storage = nullptr;
|
|
String as_database;
|
|
String as_table;
|
|
ASTSelectQuery * select = nullptr;
|
|
|
|
ASTCreateQuery() = default;
|
|
ASTCreateQuery(const StringRange range_) : ASTQueryWithOutput(range_) {}
|
|
|
|
/** Get the text that identifies this element. */
|
|
String getID() const override { return (attach ? "AttachQuery_" : "CreateQuery_") + database + "_" + table; };
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
auto res = std::make_shared<ASTCreateQuery>(*this);
|
|
res->children.clear();
|
|
|
|
if (columns)
|
|
res->set(res->columns, columns->clone());
|
|
if (storage)
|
|
res->set(res->storage, storage->clone());
|
|
if (select)
|
|
res->set(res->select, select->clone());
|
|
|
|
cloneOutputOptions(*res);
|
|
|
|
return res;
|
|
}
|
|
|
|
ASTPtr getRewrittenASTWithoutOnCluster(const std::string & new_database) const override
|
|
{
|
|
auto query_ptr = clone();
|
|
ASTCreateQuery & query = static_cast<ASTCreateQuery &>(*query_ptr);
|
|
|
|
query.cluster.clear();
|
|
if (query.database.empty())
|
|
query.database = new_database;
|
|
|
|
return query_ptr;
|
|
}
|
|
|
|
protected:
|
|
void formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override
|
|
{
|
|
frame.need_parens = false;
|
|
|
|
if (!database.empty() && table.empty())
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "")
|
|
<< (attach ? "ATTACH DATABASE " : "CREATE DATABASE ")
|
|
<< (if_not_exists ? "IF NOT EXISTS " : "")
|
|
<< (settings.hilite ? hilite_none : "")
|
|
<< backQuoteIfNeed(database);
|
|
formatOnCluster(settings);
|
|
|
|
if (storage)
|
|
storage->formatImpl(settings, state, frame);
|
|
|
|
return;
|
|
}
|
|
|
|
{
|
|
std::string what = "TABLE";
|
|
if (is_view)
|
|
what = "VIEW";
|
|
if (is_materialized_view)
|
|
what = "MATERIALIZED VIEW";
|
|
|
|
settings.ostr
|
|
<< (settings.hilite ? hilite_keyword : "")
|
|
<< (attach ? "ATTACH " : "CREATE ")
|
|
<< (is_temporary ? "TEMPORARY " : "")
|
|
<< what << " "
|
|
<< (if_not_exists ? "IF NOT EXISTS " : "")
|
|
<< (settings.hilite ? hilite_none : "")
|
|
<< (!database.empty() ? backQuoteIfNeed(database) + "." : "") << backQuoteIfNeed(table);
|
|
formatOnCluster(settings);
|
|
}
|
|
|
|
if (!as_table.empty())
|
|
{
|
|
std::string what = (!is_materialized_view ? " AS " : " TO ");
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << what << (settings.hilite ? hilite_none : "")
|
|
<< (!as_database.empty() ? backQuoteIfNeed(as_database) + "." : "") << backQuoteIfNeed(as_table);
|
|
}
|
|
|
|
if (columns)
|
|
{
|
|
settings.ostr << (settings.one_line ? " (" : "\n(");
|
|
FormatStateStacked frame_nested = frame;
|
|
++frame_nested.indent;
|
|
columns->formatImpl(settings, state, frame_nested);
|
|
settings.ostr << (settings.one_line ? ")" : "\n)");
|
|
}
|
|
|
|
if (storage)
|
|
storage->formatImpl(settings, state, frame);
|
|
|
|
if (is_populate)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " POPULATE" << (settings.hilite ? hilite_none : "");
|
|
}
|
|
|
|
if (select)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << " AS" << settings.nl_or_ws << (settings.hilite ? hilite_none : "");
|
|
select->formatImpl(settings, state, frame);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|