connector-x
connector-x copied to clipboard
read mysql bit type as i64
Currently, mysql column type MYSQL_TYPE_BIT is not supported, panicking the process if present in the table. And this issue is also stated in #359 and #491 .
I think it's appropriate to convert the bit type as longlong i64. According to the mysql doc page, bit type columns can store M-bit values, with M ranging from 1 to 64.