mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
f613588c2b
merging and post-make-test changes. mysql-test/suite/rpl/r/rpl_report.result: results changed mysql-test/suite/rpl/t/rpl_report.test: correcting test because of non-deterministic select's result sql/set_var.cc: compilation issue
21 lines
966 B
Text
21 lines
966 B
Text
# Verify that mysqld init time --report-{host,port,user,password} parameters
|
|
# are SHOW-able and SELECT-able FROM INFORMATION_SCHEMA.global_variables
|
|
|
|
source include/master-slave.inc;
|
|
|
|
connection slave;
|
|
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_host';
|
|
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_port';
|
|
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_user';
|
|
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_password';
|
|
query_vertical show global variables like 'report_host';
|
|
query_vertical show global variables like 'report_port';
|
|
query_vertical show global variables like 'report_user';
|
|
query_vertical show global variables like 'report_password';
|
|
|
|
# to demonstrate that report global variables are read-only
|
|
error ER_INCORRECT_GLOBAL_LOCAL_VAR;
|
|
set @@global.report_host='my.new.address.net';
|
|
|
|
|
|
--echo end of tests
|