ClickHouse/dbms/include/DB/Parsers/ASTCheckQuery.h
2014-08-05 14:53:27 +04:00

26 lines
517 B
C++

#pragma once
#include <DB/Parsers/IAST.h>
namespace DB
{
struct ASTCheckQuery : public IAST
{
ASTCheckQuery(StringRange range_ = StringRange()) : IAST(range_) {};
ASTCheckQuery(const ASTCheckQuery & ast) = default;
/** Получить текст, который идентифицирует этот элемент. */
String getID() const { return ("CheckQuery_" + database + "_" + table); };
ASTPtr clone() const
{
return new ASTCheckQuery(*this);
}
std::string database;
std::string table;
};
}