~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/include/sizing_auto.inc

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mto: (1.3.9 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pcrsa022082zj46k
Tags: upstream-5.6.24
ImportĀ upstreamĀ versionĀ 5.6.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
show variables like "max_connections";
5
5
# open_files_limit depends on OS configuration (ulimit -n)
6
6
#show variables like "open_files_limit";
7
 
show variables like "%performance_schema%";
 
7
show variables where
 
8
    `Variable_name` != "performance_schema_max_statement_classes" and
 
9
    `Variable_name` like "performance_schema%";
8
10
show status like "%performance_schema%";
9
11
 
10
12
# Each test script should provide a different test.cnf file,
11
13
# with different settings.
12
14
# This output will show the sizes computed automatically.
13
15
# Note that this output is very dependent on the platform.
 
16
# The output of SHOW ENGINE PERFORMANCE_SCHEMA STATUS
 
17
# is very dependent on the platform,
 
18
# so it is not printed here to ensure stability of the .results files.
 
19
# To troubleshoot the performance schema memory consumption at different
 
20
# configuration settings, comment the following line.
 
21
# Debug only:
14
22
 
15
 
show engine performance_schema status;
 
23
# show engine performance_schema status;
16
24