~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-201203300109

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2011-11-08 11:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20111108113113-3ulw01fvi4vn8m25
Tags: upstream-5.5.17
ImportĀ upstreamĀ versionĀ 5.5.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
select @@global.large_page_size = 1;
 
2
@@global.large_page_size = 1
 
3
0
 
4
select @@session.large_page_size;
 
5
ERROR HY000: Variable 'large_page_size' is a GLOBAL variable
 
6
show global variables like 'large_page_size';
 
7
Variable_name   Value
 
8
large_page_size #
 
9
show session variables like 'large_page_size';
 
10
Variable_name   Value
 
11
large_page_size #
 
12
select * from information_schema.global_variables where variable_name='large_page_size';
 
13
VARIABLE_NAME   VARIABLE_VALUE
 
14
LARGE_PAGE_SIZE #
 
15
select * from information_schema.session_variables where variable_name='large_page_size';
 
16
VARIABLE_NAME   VARIABLE_VALUE
 
17
LARGE_PAGE_SIZE #
 
18
set global large_page_size=1;
 
19
ERROR HY000: Variable 'large_page_size' is a read only variable
 
20
set session large_page_size=1;
 
21
ERROR HY000: Variable 'large_page_size' is a read only variable