Paul Loyd
Paul Loyd
@karaolidis > Hello! Is this still an ongoing issue? I haven't used the crate yet, but this feels like a relatively important problem to address... We have been using this...
@alexanderspevak > I have case of infinte inserting, so calling inserter.end() is not something what I want See [the documentation](https://github.com/loyd/clickhouse.rs?tab=readme-ov-file#infinite-inserting) how to properly use it. You need to set some...
@ta3pks, what do you mean by "consequtive ids are not the same"?
@ta3pks > second insert simply was not inserted despite being successful i thought I run the example 100 times both in debug and release modes and it's fine. What's the...
I apologize for the inadequately long answer. Thanks for your contribution. LGTM. Can you update PR? If you don't have time, it's OK, and I'll update it on my own.
Hello, I do not totally understand the problem. You're trying to insert `Vec` into `String`. The schema should contain `Array(String)` or you can use `serde(with)` to somehow transform `Vec` into...
Hi, `Row` doesn't support `rename_all` for now, only `rename`. It's not a big problem to implement it by using the `heck` crate, but I have no time for it for...
Hello, do you have some minimal example for this?
Hello, > Surprisingly, the INSERTs using Arrow in Python are even faster than this ClickHouse Rust client using RowBinary format, though I have not investigated where this client loses time....
@rbeeli, have you disabled compression in this library? I mean, `client.with_compression(Compression::None)`? It's a common mistake in such experiments. Also, `clickhouse-connect` uses TCP instead of HTTP, which generally is faster. I...