mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
33 lines
928 B
C++
33 lines
928 B
C++
#pragma once
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
#include <DB/Storages/AlterCommands.h>
|
|
#include <DB/Interpreters/Context.h>
|
|
#include <DB/Parsers/ASTIdentifier.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
|
|
/** Позволяет добавить или удалить столбец в таблице.
|
|
*/
|
|
class InterpreterAlterQuery
|
|
{
|
|
public:
|
|
InterpreterAlterQuery(ASTPtr query_ptr_, Context & context_);
|
|
|
|
void execute();
|
|
|
|
/** Изменяет список столбцов в метаданных таблицы на диске. Нужно вызывать под TableStructureLock соответствующей таблицы.
|
|
*/
|
|
static void updateMetadata(const String & database, const String & table, const NamesAndTypesList & columns, Context & context);
|
|
|
|
static AlterCommands parseAlter(const ASTAlterQuery::ParameterContainer & params, const DataTypeFactory & data_type_factory);
|
|
private:
|
|
ASTPtr query_ptr;
|
|
|
|
Context context;
|
|
};
|
|
}
|