We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836934e commit cf49402Copy full SHA for cf49402
pymysqlreplication/row_event.py
@@ -62,9 +62,6 @@ def _read_column_data(self, null_bitmap):
62
values[name] = struct.unpack("<B", self.packet.read(1))[0]
63
else:
64
values[name] = struct.unpack("<b", self.packet.read(1))[0]
65
-
66
- if column.type_is_bool:
67
- values[name] = bool(values[name])
68
elif column.type == FIELD_TYPE.SHORT:
69
if unsigned:
70
values[name] = struct.unpack("<H", self.packet.read(2))[0]
0 commit comments