suharev7

Results 36 comments of suharev7

https://github.com/suharev7/clickhouse-rs/issues/73

I am currently working on supporting `LowCardinality` types.

[LowCardinality support](https://github.com/suharev7/clickhouse-rs/commit/b4e54a598d8c6b09fdf889726a1b3112d58aa767) has been pushed.

I hope that in January I will add support for nested `LowCardinality` (for Map and Array).

Yes, you right. I didn't release new versions for a long time. Try to release this month.

Version [1.1.0-alpha.1](https://crates.io/crates/clickhouse-rs/1.1.0-alpha.1) has been released.

Try to use `tcp://localhost:9000?compression=lz4`

`clickhouse-rs` works with binary protocol (by default port: 9000) and `chproxy` works with HTTP protocol (by default port: 8123), so: * If you would like to work through binary protocol...

Thanks for this issue. I've added support for inserting rows number arrays. Each kind of data-inserting method should have the same set of supported types, but the current implementation may...

If you needed a convent `Row` in JSON, you could write something like this: ~~~rust use clickhouse_rs::{ errors::Result, types::{Row, SqlType, ColumnType}, }; use serde_json::{Number, Value, Map}; fn row_to_json(row: &Row(row: &'a...