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

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/pfs_events_stages_hl_size_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.performance_schema_events_stages_history_long_size;
 
2
@@global.performance_schema_events_stages_history_long_size
 
3
15000
 
4
select @@session.performance_schema_events_stages_history_long_size;
 
5
ERROR HY000: Variable 'performance_schema_events_stages_history_long_size' is a GLOBAL variable
 
6
show global variables like 'performance_schema_events_stages_history_long_size';
 
7
Variable_name   Value
 
8
performance_schema_events_stages_history_long_size      15000
 
9
show session variables like 'performance_schema_events_stages_history_long_size';
 
10
Variable_name   Value
 
11
performance_schema_events_stages_history_long_size      15000
 
12
select * from information_schema.global_variables
 
13
where variable_name='performance_schema_events_stages_history_long_size';
 
14
VARIABLE_NAME   VARIABLE_VALUE
 
15
PERFORMANCE_SCHEMA_EVENTS_STAGES_HISTORY_LONG_SIZE      15000
 
16
select * from information_schema.session_variables
 
17
where variable_name='performance_schema_events_stages_history_long_size';
 
18
VARIABLE_NAME   VARIABLE_VALUE
 
19
PERFORMANCE_SCHEMA_EVENTS_STAGES_HISTORY_LONG_SIZE      15000
 
20
set global performance_schema_events_stages_history_long_size=1;
 
21
ERROR HY000: Variable 'performance_schema_events_stages_history_long_size' is a read only variable
 
22
set session performance_schema_events_stages_history_long_size=1;
 
23
ERROR HY000: Variable 'performance_schema_events_stages_history_long_size' is a read only variable