You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
370 B
15 lines
370 B
SHOW BINARY LOGS;
|
|
ERROR HY000: You are not using binary logging
|
|
#
|
|
# Verify that The log-slave-updates and slave-preserve-commit-order
|
|
# are disabled if binary log is disabled.
|
|
#
|
|
SELECT @@GLOBAL.log_bin;
|
|
@@GLOBAL.log_bin
|
|
0
|
|
SELECT @@GLOBAL.log_slave_updates;
|
|
@@GLOBAL.log_slave_updates
|
|
0
|
|
SELECT @@GLOBAL.slave_preserve_commit_order;
|
|
@@GLOBAL.slave_preserve_commit_order
|
|
0
|
|
|