trove/releasenotes/notes/fix-gtid-parsing-9f60ad6e9e8f173f.yaml
Doug Shelley 8538ff6e11 Fix xtrabackup-binlog file GTID parsing
The code responsible for pulling the last GTID reference from
snapshot backup restored to the replica only handled the case
where the GTID reference contained one gtid. There are common
replication use cases where the GTID reference in the file is
comma separated list of GTID references. Change the code from
using the CSV reader to just read the entire file and split it
on tabs. This will guarantee that we get the full list of GTID
references in the file.

Change-Id: Ibbde5a4daa9741e1b997a618288bf6d469356bfe
Closes-bug: 1604914
2016-07-28 19:36:04 +00:00

6 lines
135 B
YAML

---
fixes:
- Fixed parsing of GTID references containing a list
of GTIDs from xtrabackup_binlog_info file on
MySql replicas.