You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/extra/rpl_tests/rpl_loaddata.test
+5-5
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ save_master_pos;
70
70
connection slave;
71
71
# 1062 = ER_DUP_ENTRY
72
72
call mtr.add_suppression("Slave SQL.*Error .Duplicate entry .10. for key .b.. on query.* Error_code: 1062");
73
-
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.*error code=1062.*Error on slave:.*Error_code: 1847");
73
+
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.*error code=1062.*Error on slave:.*Error_code: 1860");
74
74
call mtr.add_suppression("The slave coordinator and worker threads are stopped, possibly leaving data in inconsistent state");
Copy file name to clipboardExpand all lines: mysql-test/extra/rpl_tests/rpl_stm_EE_err2.test
+3-3
Original file line number
Diff line number
Diff line change
@@ -24,13 +24,13 @@ insert into t1 values(1),(2);
24
24
drop table t1;
25
25
26
26
connection slave;
27
-
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.* error code=1062.*Error on slave:.* Error_code: 1847");
27
+
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.* error code=1062.*Error on slave:.* Error_code: 1860");
28
28
call mtr.add_suppression("The slave coordinator and worker threads are stopped, possibly leaving data in inconsistent state");
29
29
30
30
--echo (expect different error codes on master and slave)
31
31
# 1756 = ER_MTS_INCONSISTENT_DATA
32
-
# 1847 = ER_INCONSISTENT_ERROR
33
-
--let $slave_sql_errno= 1847,1756
32
+
# 1860 = ER_INCONSISTENT_ERROR
33
+
--let $slave_sql_errno= 1860,1756
34
34
# can't print error text. MTS reports a separate error in this case.
ALTER TABLE t1 DROP INDEX c2, ALGORITHM = INPLACE;
82
-
ERROR 42000: This version of MySQL doesn't yet support 'ALTER TABLE t1 DROP INDEX c2, ALGORITHM = INPLACE'
82
+
ERROR 0A000: ALGORITHM=INPLACE is not supported. Reason: Dropping a primary key is not allowed without also adding a new primary key. Try ALGORITHM=COPY.
0 commit comments