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