We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e5f10 commit 508a49dCopy full SHA for 508a49d
mysql/mariadb_gtid.go
@@ -92,7 +92,7 @@ func (gtid *MariadbGTID) forward(newer *MariadbGTID) error {
92
| mysqld-bin.000001 | 2184 | Xid | 112 | 2215 | COMMIT xid=116 |
93
| mysqld-bin.000001 | 2215 | Gtid | 111 | 2257 | BEGIN GTID 0-111-6 |
94
*/
95
- if newer.SequenceNumber <= gtid.SequenceNumber {
+ if newer.SequenceNumber < gtid.SequenceNumber {
96
log.Warnf("out of order binlog appears with gtid %s vs current position gtid %s", newer, gtid)
97
}
98
0 commit comments