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