mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-13248 binlog.binlog_parallel_replication_marks_row fails in buildbot
The test did not handle correctly possible difference in system timezone. The fix is to remove non-functional setting of local time_zone and instead allow timestamp replacement to work with any date/time
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
RESET MASTER;
|
||||
set time_zone="+02:00";
|
||||
set timestamp=1579613542;
|
||||
CREATE TABLE t1 (a INT PRIMARY KEY, b INT) ENGINE=InnoDB;
|
||||
/* GTID */ INSERT INTO t1 VALUES (1,0);
|
||||
/* GTID */ BEGIN;
|
||||
@@ -30,7 +28,6 @@ CREATE TABLE t1 (a INT PRIMARY KEY, b INT) ENGINE=InnoDB;
|
||||
/* GTID */ ALTER TABLE t4 ADD b INT;
|
||||
/* GTID */ INSERT INTO t1 VALUES (9, 5, 1);
|
||||
/* GTID */ COMMIT;
|
||||
set timestamp=1579613542;
|
||||
/* GTID */ INSERT INTO t1 VALUES (10, 6, 0);
|
||||
/* GTID */ BEGIN;
|
||||
/* GTID */ CREATE TEMPORARY TABLE t5 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
|
Reference in New Issue
Block a user