mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
75 lines
1.4 KiB
C++
75 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <Core/Field.h>
|
|
#include <Core/Types.h>
|
|
#include <Parsers/IAST.h>
|
|
#include <Storages/IStorage_fwd.h>
|
|
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTAlterCommand;
|
|
|
|
struct PartitionCommand
|
|
{
|
|
enum Type
|
|
{
|
|
ATTACH_PARTITION,
|
|
MOVE_PARTITION,
|
|
DROP_PARTITION,
|
|
DROP_DETACHED_PARTITION,
|
|
FETCH_PARTITION,
|
|
FREEZE_ALL_PARTITIONS,
|
|
FREEZE_PARTITION,
|
|
REPLACE_PARTITION,
|
|
};
|
|
|
|
Type type;
|
|
|
|
ASTPtr partition;
|
|
|
|
/// true for DETACH PARTITION.
|
|
bool detach = false;
|
|
|
|
/// true for ATTACH PART and DROP DETACHED PART (and false for PARTITION)
|
|
bool part = false;
|
|
|
|
/// For ATTACH PARTITION partition FROM db.table
|
|
String from_database;
|
|
String from_table;
|
|
bool replace = true;
|
|
|
|
/// For MOVE PARTITION
|
|
String to_database;
|
|
String to_table;
|
|
|
|
/// 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;
|
|
|
|
enum MoveDestinationType
|
|
{
|
|
DISK,
|
|
VOLUME,
|
|
TABLE,
|
|
};
|
|
|
|
std::optional<MoveDestinationType> move_destination_type;
|
|
|
|
|
|
String move_destination_name;
|
|
|
|
static std::optional<PartitionCommand> parse(const ASTAlterCommand * command);
|
|
};
|
|
|
|
using PartitionCommands = std::vector<PartitionCommand>;
|
|
|
|
|
|
}
|