2018-06-13 13:49:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Core/Field.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Core/Types.h>
|
2018-06-13 13:49:27 +00:00
|
|
|
#include <Parsers/IAST.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Storages/IStorage_fwd.h>
|
|
|
|
|
2018-06-16 02:16:19 +00:00
|
|
|
#include <optional>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <vector>
|
2018-06-13 13:49:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class ASTAlterCommand;
|
|
|
|
|
|
|
|
struct PartitionCommand
|
|
|
|
{
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
ATTACH_PARTITION,
|
2019-07-18 15:19:03 +00:00
|
|
|
MOVE_PARTITION,
|
2018-11-01 10:35:50 +00:00
|
|
|
DROP_PARTITION,
|
2019-07-22 11:23:11 +00:00
|
|
|
DROP_DETACHED_PARTITION,
|
2018-06-13 13:49:27 +00:00
|
|
|
FETCH_PARTITION,
|
2018-11-20 17:05:22 +00:00
|
|
|
FREEZE_ALL_PARTITIONS,
|
2018-06-13 13:49:27 +00:00
|
|
|
FREEZE_PARTITION,
|
2018-11-01 10:35:50 +00:00
|
|
|
REPLACE_PARTITION,
|
2018-06-13 13:49:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Type type;
|
|
|
|
|
|
|
|
ASTPtr partition;
|
|
|
|
|
|
|
|
/// true for DETACH PARTITION.
|
|
|
|
bool detach = false;
|
|
|
|
|
2019-07-22 11:23:11 +00:00
|
|
|
/// true for ATTACH PART and DROP DETACHED PART (and false for PARTITION)
|
2018-06-13 13:49:27 +00:00
|
|
|
bool part = false;
|
|
|
|
|
|
|
|
/// For ATTACH PARTITION partition FROM db.table
|
|
|
|
String from_database;
|
|
|
|
String from_table;
|
|
|
|
bool replace = true;
|
|
|
|
|
2019-07-26 10:26:23 +00:00
|
|
|
/// For MOVE PARTITION
|
|
|
|
String to_database;
|
|
|
|
String to_table;
|
2019-07-29 03:14:53 +00:00
|
|
|
|
2018-06-13 13:49:27 +00:00
|
|
|
/// For FETCH PARTITION - path in ZK to the shard, from which to download the partition.
|
|
|
|
String from_zookeeper_path;
|
|
|
|
|
|
|
|
/// For FREEZE PARTITION
|
|
|
|
String with_name;
|
|
|
|
|
2019-07-23 13:34:17 +00:00
|
|
|
enum MoveDestinationType
|
2019-07-18 15:19:03 +00:00
|
|
|
{
|
|
|
|
DISK,
|
|
|
|
VOLUME,
|
2019-09-17 11:59:09 +00:00
|
|
|
TABLE,
|
2019-07-18 15:19:03 +00:00
|
|
|
};
|
|
|
|
|
2020-03-17 17:22:41 +00:00
|
|
|
std::optional<MoveDestinationType> move_destination_type;
|
|
|
|
|
2019-07-18 15:19:03 +00:00
|
|
|
|
2019-07-23 13:34:17 +00:00
|
|
|
String move_destination_name;
|
2019-07-18 15:19:03 +00:00
|
|
|
|
2018-06-13 13:49:27 +00:00
|
|
|
static std::optional<PartitionCommand> parse(const ASTAlterCommand * command);
|
|
|
|
};
|
|
|
|
|
2020-03-17 13:49:50 +00:00
|
|
|
using PartitionCommands = std::vector<PartitionCommand>;
|
2018-06-13 13:49:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|