ClickHouse-pretty-printer
ClickHouse-pretty-printer copied to clipboard
print the content of children of AST
new ClickHouse Version has changed the children of AST from std::vector to absl::InlinedVector
using ASTs = absl::InlinedVector<ASTPtr, 7>;
so content of the children cannot be shown in debug, can you add support to absl::InlinedVector ?
