Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
3.4.7, 3.3.17
-
None
-
None
Description
There is piece of dead code in mariadb_rpl.c line 1769 and following:
if (rpl_event->event_type >= WRITE_ROWS_COMPRESSED_EVENT) { |
return rpl_event; |
rpl_event->event.rows.compressed= 1;
|
rpl_event->event.rows.type= rpl_event->event_type - WRITE_ROWS_COMPRESSED_EVENT;
|
} else if (rpl_event->event_type >= WRITE_ROWS_COMPRESSED_EVENT_V1) { |
I can't remember but likely the return was not removed when manually testing. *ROWS_COMPRESSED_EVENT is not used in replication protocol anymore, so I think we can just remove this code block.