2012-06-18 06:19:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
2012-06-18 06:19:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2017-01-23 18:05:07 +00:00
|
|
|
/** Rename one table
|
|
|
|
* or rename many tables at once.
|
2012-06-18 06:19:13 +00:00
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
class InterpreterRenameQuery : public IInterpreter
|
2012-06-18 06:19:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
InterpreterRenameQuery(ASTPtr query_ptr_, Context & context_);
|
|
|
|
BlockIO execute() override;
|
2012-06-18 06:19:13 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr;
|
|
|
|
Context context;
|
2012-06-18 06:19:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|