Hi @blackbeam, I have a bit(1) column in mysql and I cannot parse it into bool. I find that the code matches [b'0'] and [b'1']. I am curious that why need to match char '0' and '1' instead of byte 0x0 and 0x1 here? Why not also add patterns to match [0] and [1]?
version: mysql_common-0.31.0
related: #3
Hi @blackbeam, I have a
bit(1)column in mysql and I cannot parse it intobool. I find that the code matches[b'0']and[b'1']. I am curious that why need to match char '0' and '1' instead of byte0x0and0x1here? Why not also add patterns to match[0]and[1]?version: mysql_common-0.31.0
related: #3