ClickHouse / clickhouse-cpp

C++ client library for ClickHouse
Apache License 2.0
305 stars 159 forks source link

Nested types #395

Open DKGH opened 2 months ago

DKGH commented 2 months ago

I see that nested types aren't supported yet. When will they be supported?

vovchick12385 commented 1 month ago

Nested type is working now. You need to use them as two independent types with names like {NestedName.first} {NestedName.second}. When inserting into Clickhouse, if their sizes do not match, the DBMS will return an error.