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
MDEV-36923 : Add warning messages for applier FK failures
Add warning messages if applier write set execution
fails because of foreign key constraint error.
Warnings are printed by default and can be disabled using
SET GLOBAL wsrep_mode=APPLIER_DISABLE_FK_WARNINGS.
Copy file name to clipboardExpand all lines: mysql-test/suite/galera/r/galera_var_wsrep_mode.result
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ SET GLOBAL wsrep_mode='A';
20
20
ERROR 42000: Variable 'wsrep_mode' can't be set to the value of 'A'
21
21
SET GLOBAL wsrep_mode=NULL;
22
22
ERROR 42000: Variable 'wsrep_mode' can't be set to the value of 'NULL'
23
-
SET GLOBAL wsrep_mode=128;
24
-
ERROR 42000: Variable 'wsrep_mode' can't be set to the value of '128'
23
+
SET GLOBAL wsrep_mode=65536;
24
+
ERROR 42000: Variable 'wsrep_mode' can't be set to the value of '65536'
25
25
SET GLOBAL wsrep_mode=REQUIRED_PRIMARY_KEY,REPLICATE_MYISAM;
26
26
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 1
27
27
SET GLOBAL wsrep_mode=1;
@@ -56,6 +56,10 @@ SET GLOBAL wsrep_mode=REPLICATE_ARIA;
56
56
SELECT @@wsrep_mode;
57
57
@@wsrep_mode
58
58
REPLICATE_ARIA
59
+
SET GLOBAL wsrep_mode=APPLIER_DISABLE_FK_WARNINGS;
0 commit comments