/usr/lib/mysql-testsuite/t/flush2.test is in percona-server-test-5.6 5.6.22-rel71.0-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #
# Bug#17733 Flushing logs causes daily server crash
#
--source include/not_embedded.inc
--source include/not_relay_log_info_table.inc
flush logs;
set global expire_logs_days = 3;
show variables like 'log_bin%';
show variables like 'relay_log%';
flush logs;
show variables like 'log_bin%';
show variables like 'relay_log%';
set global expire_logs_days = 0;
|