Open
Description
I get this trace:
Traceback (most recent call last):
File "./test.py", line 33, in <module>
main()
File "./test.py", line 26, in main
for binlogevent in stream:
File "/usr/local/lib/python2.7/dist-packages/pymysqlreplication/binlogstream.py", line 262, in fetchone
self.__freeze_schema)
File "/usr/local/lib/python2.7/dist-packages/pymysqlreplication/packet.py", line 98, in __init__
freeze_schema = freeze_schema)
File "/usr/local/lib/python2.7/dist-packages/pymysqlreplication/event.py", line 141, in __init__
self.query = tmp.decode("utf-8")
File "/usr/lib/python2.7/encodings/utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xae in position 460: invalid start byte
I printed a repr of the packet and it is essentially:
INSERT INTO x(......, ip) VALUES (...., 'b\xae\xe1\xbd');
This is row based replication where the master was originally sent INET6_ATON('::1')
for example.
What's the recommended solution here? I'm surprised no one else has hit this as many column types leverage binary.
Thanks!
Metadata
Metadata
Assignees
Labels
No labels