clickhouse-rs
clickhouse-rs copied to clipboard
Unsupported column type "DateTime"
Hi! The code below
let block = client
.query("SELECT * FROM demo LIMIT 1")
.fetch_all()
.await?;
causes error if table contains column with type Nullable(DateTime('Europe/Moscow'))
:
Error: Io(Custom { kind: Other, error: "Other error: `Unsupported column type \"DateTime('Europe/Moscow')\".`" })
It works fine with DateTime('Europe/Moscow')
.
Nice lib, thank you!