Felix Mueller
Felix Mueller
I hope that it works OK for now
Unfortunately, we need to use `parseDateTimeBestEffort` for some queries. Have you asked ClickHouse team if they plan to support comparison between these data types (even for key fields)? [The manual](https://clickhouse.tech/docs/en/sql-reference/data-types/datetime64)...
Thanks @den-crane ! However, we don't know the data type of the column up front. Comparing with `DateTime` just worked fine for `Date` and `DateTime` columns, that's why I used...
Yes, comparing `DateTime64` values against `DateTime64` columns works fine, but comparison with `Date` or `DateTime` (my example from above) columns does not work. I had never heard about the `materialize`...
Good news, @jjtjiang the new driver version should play better with `DateTime64` columns. ```sql CREATE TABLE felix.dt64test ( `myTime` DateTime64(3) DEFAULT now(), `otherCol` String ) ENGINE = Memory ``` ```sql...
@Olga-par sorry, I do not understand the issue. Could you please elaborate a little bit?
Hi @eni9889 thanks for your question? Could you please provide an example query and let me know which visualization you have in mind? Thank you 👋
Hi @sergeymong thank you for reporting this issue. Which version are you running?
Sorry about that. Metabase authors decided to throw an Exception when a type was not "supported". We are now mapping Enum to `type/Text`, so this issue should not occur anymore....