summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/maria_used_for_temp_tables_basic.result
blob: 8795e0f128be6828c97c3c0c1d5da34e3a46710c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
select @@global.maria_used_for_temp_tables, @@global.aria_used_for_temp_tables;
@@global.maria_used_for_temp_tables	@@global.aria_used_for_temp_tables
1	1
select @@session.maria_used_for_temp_tables, @@session.aria_used_for_temp_tables;
ERROR HY000: Variable 'maria_used_for_temp_tables' is a GLOBAL variable
show global variables like '%aria_used_for_temp_tables';
Variable_name	Value
aria_used_for_temp_tables	ON
maria_used_for_temp_tables	ON
show session variables like '%aria_used_for_temp_tables';
Variable_name	Value
aria_used_for_temp_tables	ON
maria_used_for_temp_tables	ON
select * from information_schema.global_variables where variable_name like '%aria_used_for_temp_tables';
VARIABLE_NAME	VARIABLE_VALUE
ARIA_USED_FOR_TEMP_TABLES	ON
MARIA_USED_FOR_TEMP_TABLES	ON
select * from information_schema.session_variables where variable_name like '%aria_used_for_temp_tables';
VARIABLE_NAME	VARIABLE_VALUE
ARIA_USED_FOR_TEMP_TABLES	ON
MARIA_USED_FOR_TEMP_TABLES	ON
set global maria_used_for_temp_tables=1;
ERROR HY000: Variable 'maria_used_for_temp_tables' is a read only variable
set session maria_used_for_temp_tables=1;
ERROR HY000: Variable 'maria_used_for_temp_tables' is a read only variable