connector-x icon indicating copy to clipboard operation
connector-x copied to clipboard

read mysql bit type as i64

Open Cabbagec opened this issue 1 year ago • 2 comments

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.

Cabbagec avatar Jul 06 '24 09:07 Cabbagec