# MDEV#5534: mysql_tzinfo_to_sql generates wrong query # # Testing wsrep_replicate_myisam variable. SELECT @@session.wsrep_replicate_myisam; ERROR HY000: Variable 'wsrep_replicate_myisam' is a GLOBAL variable SELECT @@global.wsrep_replicate_myisam; @@global.wsrep_replicate_myisam 0 SET SESSION wsrep_replicate_myisam= ON; ERROR HY000: Variable 'wsrep_replicate_myisam' is a GLOBAL variable and should be set with SET GLOBAL SET GLOBAL wsrep_replicate_myisam= ON; SET GLOBAL wsrep_replicate_myisam= OFF; # End of test.