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

40 lines
630 B
C
Raw Normal View History

2012-06-18 06:19:13 +00:00
#pragma once
#include <DB/Parsers/IAST.h>
namespace DB
{
/** RENAME запрос
*/
class ASTRenameQuery : public IAST
{
public:
struct Table
{
String database;
String table;
};
struct Element
{
Table from;
Table to;
};
typedef std::vector<Element> Elements;
Elements elements;
2014-12-17 15:26:24 +00:00
ASTRenameQuery() = default;
ASTRenameQuery(const StringRange range_) : IAST(range_) {}
2012-06-18 06:19:13 +00:00
/** Получить текст, который идентифицирует этот элемент. */
2014-12-17 15:26:24 +00:00
String getID() const override { return "Rename"; };
2012-06-18 06:19:13 +00:00
2014-12-17 15:26:24 +00:00
ASTPtr clone() const override { return new ASTRenameQuery(*this); }
2012-06-18 06:19:13 +00:00
};
}