Help: Float not working when fetch_all
Closed this issue · 2 comments
selvavm commented
Hi @loyd
You have closed the issue but still it is not working. I am getting below error
the trait bound f64: clickhouse::row::Primitive is not satisfied
required because of the requirements on the impl of Row for f64
Below is my code
let r_ts = ts_client
.query(&query)
.fetch_all::<f64>()
.await.unwrap();
Below is my dependencies,
[dependencies]
clickhouse = "0.9.3"
tokio = { version = "1.15.0", features = ["full"] }