Closed rsalmei closed 4 months ago
Hello @suharev7, please would you have some guidance here? I may be missing something trivial or mis-using the lib... Thanks.
@rsalmei Did you find a solution here?
Unfortunately, I didn't @JosephRedfern. I ended up avoiding anything more advanced, like Nested or Arrays, since I've never got a response here.
@rsalmei Nested type isn't supported
Yep @caibirdme, thanks. And this project seems abandoned. I'm not using clickhouse at work anymore, otherwise, I'd try another lib.
@rsalmei AFAIK, no other rust clickhouse sdk support nested type... I met with the same problem, and finally I choose to use http + jsoneachrow format
Hello! Please, how do I send nested fields to clickhouse? I have a table like this:
I used to use the
row!
macro, but since I have several Nested fields, which must be inserted only in some cases, I'm using now therow.push()
method:Well, with this I get an error (don't know if it is in clickhouse db or this lib):
If I try to include a vec:
It doesn't compile:
Can you help me? Thank you.