summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/sys_vars/r/skip_show_database_basic.result
blob: d5aad0f1c178d8b657f0387cea03018ece73bf72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
select @@global.skip_show_database;
@@global.skip_show_database
0
select @@session.skip_show_database;
ERROR HY000: Variable 'skip_show_database' is a GLOBAL variable
show global variables like 'skip_show_database';
Variable_name	Value
skip_show_database	OFF
show session variables like 'skip_show_database';
Variable_name	Value
skip_show_database	OFF
select * from information_schema.global_variables where variable_name='skip_show_database';
VARIABLE_NAME	VARIABLE_VALUE
SKIP_SHOW_DATABASE	OFF
select * from information_schema.session_variables where variable_name='skip_show_database';
VARIABLE_NAME	VARIABLE_VALUE
SKIP_SHOW_DATABASE	OFF
set global skip_show_database=1;
ERROR HY000: Variable 'skip_show_database' is a read only variable
set session skip_show_database=1;
ERROR HY000: Variable 'skip_show_database' is a read only variable