clickhouse-rs
clickhouse-rs copied to clipboard
Asynchronous ClickHouse client library for Rust programming language.
On insert data to table with string type: ``` Io(Custom { kind: Other, error: "Other error: `Unsupported column type \"LowCardinality(String)\".`" }) ```
suharev7/clickhouse-rs#206 Rust doesn't have a standard library for u258/i256, so this pr only adds support for Decimal128
I am having trouble connecting to clickhouse running locally in docker image. I am using version "1.0.0-alpha.1". I get following error: ``` Error: Io(Custom { kind: Other, error: "Driver error:...
The GetHandle struct that returns from Pool.get_handle() can't use with await : ---- packages ---- [dependencies] tokio = { version = "1", features = ["full"] } clickhouse-rs="*" .... Compiling clickhouse-rs...
I'm planning to create a PR for uint256 and int256 but I would like some guidance related to the types. Rust doesn't implement native i256 neither u256. Should this crate...
Is it possible to get an Iterator from a `Row`? I'm currently converting back every value for my own `Value` so I can return them as json on my http...
https://docs.rs/chrono/latest/chrono/struct.Date.html clippy: error: use of deprecated struct `chrono::Date`: Use `NaiveDate` or `DateTime` instead
It seems I can't insert Arrays via the `row!` macro, `Array(Float32)` in my case. ``` error[E0277]: the trait bound `clickhouse_rs::types::Value: std::convert::From` is not satisfied --> src/tasks/clickhouse_pusher.rs:285:18 | 282 | block.push(row!...
table : ``` drop table if exists tmp.tmp_demo; CREATE TABLE if not exists tmp.tmp_demo ( `p_time` DateTime ) ENGINE = MergeTree PARTITION BY p_time ORDER BY p_time TTL p_time +...