mysql-server/mysql-test/t/ssl_dynamic_binlog.test
2025-03-05 14:31:37 +07:00

15 lines
406 B
Text

--echo ################## FR1.6 ALTER INSTANCE RELOAD TLS not binlogged
CREATE TABLE t1(a INT);
ALTER INSTANCE RELOAD TLS;
DROP TABLE t1;
# Check that statements were executed/binlogged in correct order.
let $show_binlog_events_mask_columns=1,2,4,5;
source include/rpl/deprecated/show_binlog_events.inc;
--echo # Cleanup
RESET BINARY LOGS AND GTIDS;
--echo ################## End of dynamic SSL tests