mariadb/mysql-test/suite/sysschema/r/pr_ps_setup_save.result

12 lines
335 B
Text

#
# MDEV-37979 sys.ps_setup_save does not restore SQL_LOG_BIN after error, causes replication discrepancy
#
select @@sql_log_bin;
@@sql_log_bin
1
call sys.ps_setup_save(-1);
ERROR 90000: Could not lock the sys.ps_setup_save user lock, another thread has a saved configuration
select @@sql_log_bin;
@@sql_log_bin
1
# End of 10.11 tests