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

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