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