~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/t/large_files_support_basic.test

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# only global
 
3
#
 
4
select @@global.large_files_support;
 
5
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
 
6
select @@session.large_files_support;
 
7
show global variables like 'large_files_support';
 
8
show session variables like 'large_files_support';
 
9
select * from information_schema.global_variables where variable_name='large_files_support';
 
10
select * from information_schema.session_variables where variable_name='large_files_support';
 
11
 
 
12
#
 
13
# show that it's read-only
 
14
#
 
15
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
 
16
set global large_files_support=1;
 
17
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
 
18
set session large_files_support=1;
 
19