Skip to content

Commit

Permalink
blob Type not decode string retain binary format
Browse files Browse the repository at this point in the history
black lint add
  • Loading branch information
sean-k1 committed Nov 29, 2023
1 parent 6850c0d commit ee30927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymysqlreplication/row_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def __read_values_name(
elif column.type == FIELD_TYPE.NEWDECIMAL:
return self.__read_new_decimal(column)
elif column.type == FIELD_TYPE.BLOB:
return self.__read_string(column.length_size, column)
return self.packet.read_length_coded_pascal_string(column.length_size)
elif column.type == FIELD_TYPE.DATETIME:
ret = self.__read_datetime()
if ret is None:
Expand Down

0 comments on commit ee30927

Please sign in to comment.