Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Fix
-
5.5.67
Description
Starting from 407b0a6ae7c3 commit BB shows a massive result mismatch:
binlog.binlog_mysqlbinlog2 'mix' w1 [ fail ]
|
Test ended at 2020-03-24 19:09:10
|
 |
CURRENT_TEST: binlog.binlog_mysqlbinlog2
|
--- /usr/share/mysql/mysql-test/suite/binlog/r/binlog_mysqlbinlog2.result 2019-01-29 21:39:35.000000000 +0300
|
+++ /dev/shm/var/1/log/binlog_mysqlbinlog2.reject 2020-03-25 02:09:10.359788889 +0300
|
@@ -272,11 +272,8 @@
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
DELIMITER /*!*/;
|
ROLLBACK/*!*/;
|
-BEGIN
|
-/*!*/;
|
-SET INSERT_ID=3/*!*/;
|
use `test`/*!*/;
|
-SET TIMESTAMP=1579609944/*!*/;
|
+SET TIMESTAMP=1579609942/*!*/;
|
SET @@session.pseudo_thread_id=999999999/*!*/;
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
|
SET @@session.sql_mode=0/*!*/;
|
@@ -285,6 +282,30 @@
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
SET @@session.lc_time_names=0/*!*/;
|
SET @@session.collation_database=DEFAULT/*!*/;
|
+create table t1 (a int auto_increment not null primary key, b char(3))
|
+/*!*/;
|
+BEGIN
|
+/*!*/;
|
+SET INSERT_ID=1/*!*/;
|
+SET TIMESTAMP=1579609942/*!*/;
|
+insert into t1 values(null, "a")
|
+/*!*/;
|
+SET TIMESTAMP=1579609942/*!*/;
|
+COMMIT
|
+/*!*/;
|
+BEGIN
|
|