ClickHouse/dbms/include/DB/Parsers/ASTQueryWithTableAndOutput.h

46 lines
1.1 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <DB/Parsers/IAST.h>
#include <DB/Parsers/ASTQueryWithOutput.h>
namespace DB
{
/** Запрос с указанием названия таблицы и, возможно, БД и секцией FORMAT.
*/
class ASTQueryWithTableAndOutput : public ASTQueryWithOutput
{
public:
String database;
String table;
ASTQueryWithTableAndOutput() {}
ASTQueryWithTableAndOutput(StringRange range_) : ASTQueryWithOutput(range_) {}
};
/// Объявляет класс-наследник ASTQueryWithTableAndOutput с реализованными методами getID и clone.
#define DEFINE_AST_QUERY_WITH_TABLE_AND_OUTPUT(Name, ID) \
class Name : public ASTQueryWithTableAndOutput \
{ \
public: \
Name() {} \
Name(StringRange range_) : ASTQueryWithTableAndOutput(range_) {} \
String getID() const { return ID"_" + database + "_" + table; }; \
\
ASTPtr clone() const \
{ \
Name * res = new Name(*this); \
res->children.clear(); \
if (format) \
{ \
res->format = format->clone(); \
res->children.push_back(res->format); \
} \
return res; \
} \
};
}