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

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