#pragma once #include #include #include namespace DB { class ASTIndexDeclaration; using IndicesASTs = std::vector>; struct IndicesDescription { IndicesASTs indices; IndicesDescription() = default; bool empty() const; bool has(const String & name) const; String toString() const; static IndicesDescription parse(const String & str); }; }