mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
30 lines
519 B
C++
30 lines
519 B
C++
#pragma once
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
class IAST;
|
|
using ASTPtr = std::shared_ptr<IAST>;
|
|
|
|
/** Allows you add or remove a column in the table.
|
|
* It also allows you to manipulate the partitions of the MergeTree family tables.
|
|
*/
|
|
class InterpreterAlterQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterAlterQuery(const ASTPtr & query_ptr_, const Context & context_);
|
|
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
|
|
const Context & context;
|
|
};
|
|
|
|
}
|