ClickHouse/dbms/include/DB/Interpreters/InterpreterAlterQuery.h

63 lines
1.5 KiB
C
Raw Normal View History

2013-08-07 13:07:42 +00:00
#pragma once
#include <DB/Storages/IStorage.h>
#include <DB/Storages/AlterCommands.h>
2013-08-07 13:07:42 +00:00
#include <DB/Interpreters/Context.h>
#include <DB/Parsers/ASTIdentifier.h>
2013-08-07 13:07:42 +00:00
namespace DB
{
2013-08-07 13:07:42 +00:00
2013-08-08 23:49:59 +00:00
/** Позволяет добавить или удалить столбец в таблице.
2013-08-07 13:07:42 +00:00
*/
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);
private:
2014-08-07 09:23:55 +00:00
struct PartitionCommand
{
enum Type
{
DROP_PARTITION,
2014-08-07 11:46:01 +00:00
ATTACH_PARTITION,
2014-08-07 09:23:55 +00:00
};
Type type;
Field partition;
bool detach; /// true для DETACH PARTITION.
2014-08-07 11:46:01 +00:00
bool unreplicated;
bool part;
2014-08-07 09:23:55 +00:00
static PartitionCommand dropPartition(const Field & partition, bool detach)
{
return {DROP_PARTITION, partition, detach};
}
2014-08-07 11:46:01 +00:00
static PartitionCommand attachPartition(const Field & partition, bool unreplicated, bool part)
{
2014-08-08 08:28:13 +00:00
return {ATTACH_PARTITION, partition, false, unreplicated, part};
2014-08-07 11:46:01 +00:00
}
2014-08-07 09:23:55 +00:00
};
typedef std::vector<PartitionCommand> PartitionCommands;
2013-08-07 13:07:42 +00:00
ASTPtr query_ptr;
Context context;
static void parseAlter(const ASTAlterQuery::ParameterContainer & params, const DataTypeFactory & data_type_factory,
2014-08-07 09:23:55 +00:00
AlterCommands & out_alter_commands, PartitionCommands & out_partition_commands);
2013-08-07 13:07:42 +00:00
};
}