summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_old_master.test
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-14528 Track master timestamp in case rolling back to serial replicationIgor Mazur2018-11-061-0/+8
| | | | | | | | | | | | | | | When replicated events are from Master unaware of MariaDB GTID their handling by the Parallel slave misses Seconds_Behind_Master updating. In the bug condition the Show-Slave-Status' field remains unchanged. Because in such case event execution is sequential the bug is fixed with deploying the same logics as in the explicit single-threaded mode with is to set Relay_log_event::last_master_timestamp member early at the end of event reading from the relay log.
* MDEV-5769: Slave crashes on attempt to do parallel replication from an older ↵unknown2014-03-041-0/+49
master Older master has no GTID events, so such events are not available for deciding on scheduling of event groups and so on. With this patch, we run such events from old masters single-threaded, in the sql driver thread. This seems better than trying to make the parallel code handle the data from older masters; while possible, this would require a lot of testing (as well as possibly some extra overhead in the scheduling of events), which hardly seems worthwhile.