mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
ad807aebde
Make `mysqladmin --local` use `FLUSH LOCAL` for all flush-* commands, and only do `SET SQL_LOG_BIN=OFF` for create/drop/old_password/password. Additionally, --local is ignored for all commands that never write to binlog, so e.g. `mysqladmin --local version` no longer needs SUPER
12 lines
457 B
Text
12 lines
457 B
Text
create user adm@localhost identified by 'foobar';
|
|
grant reload on *.* to adm@localhost;
|
|
reset master;
|
|
include/show_binlog_events.inc
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # flush status
|
|
include/show_binlog_events.inc
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # flush status
|
|
drop user adm@localhost;
|