Skip to content

Commit b507673

Browse files
committed
docs: add binlog_row_image comment in read_values_name
1 parent a74e3ff commit b507673

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pymysqlreplication/row_event.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ def __read_values_name(self, column, null_bitmap, null_bitmap_index, cols_bitmap
127127
name = self.table_map[self.table_id].columns[i].name
128128

129129
if BitGet(cols_bitmap, i) == 0:
130+
# This block is only executed when binlog_row_image = MINIMAL.
131+
# When binlog_row_image = FULL, this block does not execute.
130132
self.none_sources[name] = 'cols_bitmap'
131133
return None
132134

0 commit comments

Comments
 (0)