#pragma once #include #include #include namespace DB { class IStorage; class Context; class WriteBuffer; class ReadBuffer; struct MutationCommand { ASTPtr ast; /// The AST of the whole command enum Type { EMPTY, /// Not used. DELETE, UPDATE, }; Type type = EMPTY; ASTPtr predicate; std::unordered_map column_to_update_expression; static std::optional parse(ASTAlterCommand * command); }; class MutationCommands : public std::vector { public: std::shared_ptr ast() const; void writeText(WriteBuffer & out) const; void readText(ReadBuffer & in); }; }