mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
mysql-test/r/im_options_set.result: Fixed result file. mysql-test/r/im_options_unset.result: Fixed result file.
16 lines
334 B
Plaintext
16 lines
334 B
Plaintext
server_id = 1
|
|
server_id = 2
|
|
SHOW VARIABLES LIKE 'server_id';
|
|
Variable_name Value
|
|
server_id 1
|
|
UNSET mysqld1.server_id;
|
|
server_id = 2
|
|
SHOW VARIABLES LIKE 'server_id';
|
|
Variable_name Value
|
|
server_id 1
|
|
UNSET mysqld2.server_id;
|
|
FLUSH INSTANCES;
|
|
SHOW VARIABLES LIKE 'server_id';
|
|
Variable_name Value
|
|
server_id 1
|