summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/relay_log_info_file_basic.test
blob: 4709b8e3e47ed8639bd2b7c958f97a870f0c2915 (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_info_file;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.relay_log_info_file;
show global variables like 'relay_log_info_file';
show session variables like 'relay_log_info_file';
select * from information_schema.global_variables where variable_name='relay_log_info_file';
select * from information_schema.session_variables where variable_name='relay_log_info_file';

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