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

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/large_files_support_basic.result

  • 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
select @@global.large_files_support;
 
2
@@global.large_files_support
 
3
1
 
4
select @@session.large_files_support;
 
5
ERROR HY000: Variable 'large_files_support' is a GLOBAL variable
 
6
show global variables like 'large_files_support';
 
7
Variable_name   Value
 
8
large_files_support     ON
 
9
show session variables like 'large_files_support';
 
10
Variable_name   Value
 
11
large_files_support     ON
 
12
select * from information_schema.global_variables where variable_name='large_files_support';
 
13
VARIABLE_NAME   VARIABLE_VALUE
 
14
LARGE_FILES_SUPPORT     ON
 
15
select * from information_schema.session_variables where variable_name='large_files_support';
 
16
VARIABLE_NAME   VARIABLE_VALUE
 
17
LARGE_FILES_SUPPORT     ON
 
18
set global large_files_support=1;
 
19
ERROR HY000: Variable 'large_files_support' is a read only variable
 
20
set session large_files_support=1;
 
21
ERROR HY000: Variable 'large_files_support' is a read only variable