2013-08-07 13:07:42 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
#include <Storages/AlterCommands.h>
|
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
|
#include <Parsers/ASTAlterQuery.h>
|
2017-01-21 04:24:28 +00:00
|
|
|
|
|
2013-08-07 13:07:42 +00:00
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
2014-07-11 08:12:03 +00:00
|
|
|
|
|
2013-08-08 23:49:59 +00:00
|
|
|
|
/** Позволяет добавить или удалить столбец в таблице.
|
2014-10-09 20:28:33 +00:00
|
|
|
|
* Также позволяет осуществить манипуляции с партициями таблиц семейства MergeTree.
|
2013-08-07 13:07:42 +00:00
|
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
|
class InterpreterAlterQuery : public IInterpreter
|
2013-08-07 13:07:42 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2017-05-23 18:01:50 +00:00
|
|
|
|
InterpreterAlterQuery(const ASTPtr & query_ptr_, const Context & context_);
|
2013-08-07 13:07:42 +00:00
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
|
BlockIO execute() override;
|
2013-08-07 13:07:42 +00:00
|
|
|
|
|
2014-07-11 08:12:03 +00:00
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
|
struct PartitionCommand
|
|
|
|
|
{
|
|
|
|
|
enum Type
|
|
|
|
|
{
|
|
|
|
|
DROP_PARTITION,
|
|
|
|
|
ATTACH_PARTITION,
|
|
|
|
|
FETCH_PARTITION,
|
|
|
|
|
FREEZE_PARTITION,
|
2017-04-14 12:40:48 +00:00
|
|
|
|
RESHARD_PARTITION,
|
|
|
|
|
DROP_COLUMN,
|
2017-04-01 07:20:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Type type;
|
|
|
|
|
|
|
|
|
|
Field partition;
|
2017-04-14 12:40:48 +00:00
|
|
|
|
Field column_name;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
bool detach = false; /// true для DETACH PARTITION.
|
|
|
|
|
|
|
|
|
|
bool part = false;
|
|
|
|
|
|
|
|
|
|
String from; /// Для FETCH PARTITION - путь в ZK к шарду, с которого скачивать партицию.
|
|
|
|
|
|
|
|
|
|
/// Для RESHARD PARTITION.
|
|
|
|
|
Field last_partition;
|
|
|
|
|
WeightedZooKeeperPaths weighted_zookeeper_paths;
|
|
|
|
|
ASTPtr sharding_key_expr;
|
|
|
|
|
bool do_copy = false;
|
|
|
|
|
Field coordinator;
|
|
|
|
|
|
|
|
|
|
/// For FREEZE PARTITION
|
|
|
|
|
String with_name;
|
|
|
|
|
|
2017-05-24 21:38:56 +00:00
|
|
|
|
static PartitionCommand dropPartition(const Field & partition, bool detach)
|
2017-04-01 07:20:54 +00:00
|
|
|
|
{
|
|
|
|
|
PartitionCommand res;
|
|
|
|
|
res.type = DROP_PARTITION;
|
|
|
|
|
res.partition = partition;
|
|
|
|
|
res.detach = detach;
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-14 12:40:48 +00:00
|
|
|
|
static PartitionCommand dropColumnFromPartition(const Field & partition, const Field & column_name)
|
|
|
|
|
{
|
|
|
|
|
PartitionCommand res;
|
|
|
|
|
res.type = DROP_COLUMN;
|
|
|
|
|
res.partition = partition;
|
|
|
|
|
res.column_name = column_name;
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-24 21:38:56 +00:00
|
|
|
|
static PartitionCommand attachPartition(const Field & partition, bool part)
|
2017-04-01 07:20:54 +00:00
|
|
|
|
{
|
|
|
|
|
PartitionCommand res;
|
|
|
|
|
res.type = ATTACH_PARTITION;
|
|
|
|
|
res.partition = partition;
|
|
|
|
|
res.part = part;
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PartitionCommand fetchPartition(const Field & partition, const String & from)
|
|
|
|
|
{
|
|
|
|
|
PartitionCommand res;
|
|
|
|
|
res.type = FETCH_PARTITION;
|
|
|
|
|
res.partition = partition;
|
|
|
|
|
res.from = from;
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PartitionCommand freezePartition(const Field & partition, const String & with_name)
|
|
|
|
|
{
|
|
|
|
|
PartitionCommand res;
|
|
|
|
|
res.type = FREEZE_PARTITION;
|
|
|
|
|
res.partition = partition;
|
|
|
|
|
res.with_name = with_name;
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PartitionCommand reshardPartitions(const Field & first_partition_, const Field & last_partition_,
|
|
|
|
|
const WeightedZooKeeperPaths & weighted_zookeeper_paths_, const ASTPtr & sharding_key_expr_,
|
|
|
|
|
bool do_copy_, const Field & coordinator_)
|
|
|
|
|
{
|
2017-04-14 12:40:48 +00:00
|
|
|
|
PartitionCommand res;
|
|
|
|
|
res.type = RESHARD_PARTITION;
|
|
|
|
|
res.partition = first_partition_;
|
|
|
|
|
res.last_partition = last_partition_;
|
|
|
|
|
res.weighted_zookeeper_paths = weighted_zookeeper_paths_;
|
|
|
|
|
res.sharding_key_expr = sharding_key_expr_;
|
|
|
|
|
res.do_copy = do_copy_;
|
|
|
|
|
res.coordinator = coordinator_;
|
|
|
|
|
return res;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
using PartitionCommands = std::vector<PartitionCommand>;
|
|
|
|
|
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
|
|
|
|
|
Context context;
|
|
|
|
|
|
|
|
|
|
static void parseAlter(const ASTAlterQuery::ParameterContainer & params,
|
|
|
|
|
AlterCommands & out_alter_commands, PartitionCommands & out_partition_commands);
|
2013-08-07 13:07:42 +00:00
|
|
|
|
};
|
2014-10-16 13:37:01 +00:00
|
|
|
|
|
2013-08-07 13:07:42 +00:00
|
|
|
|
}
|