We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa3872 commit 06ddd9fCopy full SHA for 06ddd9f
pymysqlreplication/row_event.py
@@ -203,11 +203,11 @@ def __read_values_name(
203
elif column.type == FIELD_TYPE.YEAR:
204
return self.packet.read_uint8() + 1900
205
elif column.type == FIELD_TYPE.ENUM:
206
- enum_index = self.packet.read_uint_by_size(column.size)
+ self.packet.read_uint_by_size(column.size)
207
# unsupported
208
return None
209
elif column.type == FIELD_TYPE.SET:
210
- bit_mask = self.packet.read_uint_by_size(column.size)
211
212
213
elif column.type == FIELD_TYPE.BIT:
0 commit comments