mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-26: Global transaction ID
Adjust full test suite to work with GTID. Huge patch, mainly due to having to update .result file for all SHOW BINLOG EVENTS and mysqlbinlog outputs, where the new GTID events pop up. Everything was painstakingly checked to be still correct and valid .result file updates.
This commit is contained in:
@@ -33,13 +33,13 @@ drop table t1;
|
||||
connection master;
|
||||
reset master;
|
||||
|
||||
# setting the until position to correspond to the first following create table
|
||||
# which will make the event executed and the slave sql thread stopped
|
||||
# right after that.
|
||||
let $until_pos= query_get_value(SHOW MASTER STATUS, Position, 1);
|
||||
inc $until_pos;
|
||||
# setting the until position to correspond to the last position of
|
||||
# create table which will make the event executed and the slave sql
|
||||
# thread stopped right after that.
|
||||
|
||||
create table t1(n int);
|
||||
let $until_pos= query_get_value(SHOW MASTER STATUS, Position, 1);
|
||||
dec $until_pos;
|
||||
create table t2(n int);
|
||||
|
||||
connection slave;
|
||||
|
Reference in New Issue
Block a user