summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/relay_log_basic.test
blob: 1ea605775563dd4de5386ab7883011921ae75b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--source include/not_embedded.inc
#
# only global
#
select @@global.relay_log;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.relay_log;
show global variables like 'relay_log';
show session variables like 'relay_log';
select * from information_schema.global_variables where variable_name='relay_log';
select * from information_schema.session_variables where variable_name='relay_log';

#
# show that it's read-only
#
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
set global relay_log=1;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
set session relay_log=1;