Skip to content

Commit a2a80eb

Browse files
author
Luis Soares
committed
Fixes result file for binlog_stm_mix_innodb_myisam which was
left unchanged on patch for BUG#50192.
1 parent 6dd801d commit a2a80eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

mysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -519,10 +519,10 @@ end|
519519
reset master;
520520
insert into t2 values (bug27417(1));
521521
Warnings:
522-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
522+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
523523
insert into t2 select bug27417(2);
524524
Warnings:
525-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
525+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
526526
reset master;
527527
insert into t2 values (bug27417(2));
528528
ERROR 23000: Duplicate entry '2' for key 'PRIMARY'
@@ -542,7 +542,7 @@ count(*)
542542
2
543543
delete from t2 where a=bug27417(3);
544544
Warnings:
545-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
545+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
546546
select count(*) from t2 /* nothing got deleted */;
547547
count(*)
548548
2
@@ -559,7 +559,7 @@ count(*)
559559
delete t2 from t2 where t2.a=bug27417(100) /* must not affect t2 */;
560560
affected rows: 0
561561
Warnings:
562-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
562+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
563563
select count(*) from t1 /* must be 7 */;
564564
count(*)
565565
7
@@ -783,10 +783,10 @@ end|
783783
reset master;
784784
insert into t2 values (bug27417(1));
785785
Warnings:
786-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
786+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
787787
insert into t2 select bug27417(2);
788788
Warnings:
789-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
789+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
790790
reset master;
791791
insert into t2 values (bug27417(2));
792792
ERROR 23000: Duplicate entry '2' for key 'PRIMARY'
@@ -805,7 +805,7 @@ count(*)
805805
2
806806
delete from t2 where a=bug27417(3);
807807
Warnings:
808-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
808+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
809809
select count(*) from t2 /* nothing got deleted */;
810810
count(*)
811811
2
@@ -821,7 +821,7 @@ count(*)
821821
delete t2 from t2 where t2.a=bug27417(100) /* must not affect t2 */;
822822
affected rows: 0
823823
Warnings:
824-
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement updates two AUTO_INCREMENT columns. This is unsafe because the generated value cannot be predicted by slave.
824+
Note 1592 Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT. Reason for unsafeness: Statement invokes a trigger or a stored function that inserts into AUTO_INCREMENT column which is unsafe to binlog in STATEMENT format because slave may execute it non-deterministically.
825825
select count(*) from t1 /* must be 7 */;
826826
count(*)
827827
7

0 commit comments

Comments
 (0)