#pragma once #include #include #include #include #include #include namespace DB { class ASTAlterCommand; struct PartitionCommand { enum Type { ATTACH_PARTITION, CLEAR_COLUMN, DROP_PARTITION, FETCH_PARTITION, FREEZE_ALL_PARTITIONS, FREEZE_PARTITION, REPLACE_PARTITION, MOVE_PARTITION, }; Type type; ASTPtr partition; Field column_name; /// true for DETACH PARTITION. bool detach = false; /// true for ATTACH 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 FETCH PARTITION - path in ZK to the shard, from which to download the partition. String from_zookeeper_path; /// For FREEZE PARTITION String with_name; static std::optional parse(const ASTAlterCommand * command); }; class PartitionCommands : public std::vector { public: void validate(const IStorage & table); }; }