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