summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/setup_consumers_defaults.test
blob: d8aa52a179658c121fde993e37cff60506716a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

# Tests for PERFORMANCE_SCHEMA

--source include/not_embedded.inc
--source include/have_perfschema.inc

SELECT * FROM performance_schema.setup_consumers ORDER BY name;

#
# Verify that the consumer option settings cannot be changed or seen
#
--error ER_UNKNOWN_SYSTEM_VARIABLE
SELECT @@performance_schema_consumer_events_stages_current;

--error ER_UNKNOWN_SYSTEM_VARIABLE
SET @@performance_schema_consumer_events_stages_current=0;

SHOW GLOBAL VARIABLES LIKE "performance_schema_consumer%";