#pragma once #include namespace DB { using IndicesAsts = std::vector>; struct IndicesDescription { IndicesAsts indices; IndicesDescription() = default; String toString() const; static IndicesDescription parse(const String & str); }; }