humengyu

Results 32 comments of humengyu

I use this sql to create table in TiDB, but it throws an exception: `Invalid default value for 'expected_date'`. How did you create this table in TiDB? Can you provide...

I want to test your case, can you provided some sample data?

MySQL jdbc driver use ascii code to parse date , but TiKV java client use java class Date. That's why you can't read '2020-00-00' by presto-tidb-connector. We will update TiKV...

It will be fixed by tikv-java-client in the future(version 3.0.1+).

We have discussed it with PingCAP.

What's the Async Query?

Presto will always enable filter-push-down and can not be disabled, so you don't need to configure it.

This is our fault, we will change the documentation later.

It seems that the datatype of column `happen_time` is varchar in tidb, but you want convert it to timestamp. We will add a config which can be used to specify...

Thanks for your issue, now you can specify timestamp format by config `timestamp-format.${columnName}`, like `timestamp-format.happen_time='yyyy-MM-dd HH:mm:ss.SSS'`.