mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
27 lines
439 B
C++
27 lines
439 B
C++
#pragma once
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
#include <DB/Interpreters/Context.h>
|
|
#include <DB/Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/** Переименовать одну или несколько таблиц.
|
|
*/
|
|
class InterpreterRenameQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterRenameQuery(ASTPtr query_ptr_, Context & context_);
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
Context context;
|
|
};
|
|
|
|
|
|
}
|