mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#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; \
|
||
} \
|
||
};
|
||
}
|