summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/t/mysqladmin.test
blob: 3c2fbc0a708f5770bbec594a11a17e4ef6975e78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
source include/have_binlog_format_statement.inc;
#
# MDEV-12612 mysqladmin --local flush... to use FLUSH LOCAL
#
create user adm@localhost identified by 'foobar';
grant reload on *.* to adm@localhost;
reset master;
exec $MYSQLADMIN -uadm -pfoobar flush-status;
source include/show_binlog_events.inc;
exec $MYSQLADMIN --local -uadm -pfoobar flush-status;
source include/show_binlog_events.inc;
drop user adm@localhost;