1# Tests for PERFORMANCE_SCHEMA
2
3--source include/not_embedded.inc
4--source include/have_perfschema.inc
5
6-- error ER_DBACCESS_DENIED_ERROR
7alter table performance_schema.hosts
8  add column foo integer;
9
10truncate table performance_schema.hosts;
11
12-- error ER_DBACCESS_DENIED_ERROR
13ALTER TABLE performance_schema.hosts ADD INDEX test_index(CURRENT_CONNECTIONS);
14
15-- error ER_DBACCESS_DENIED_ERROR
16CREATE UNIQUE INDEX test_index ON performance_schema.hosts(CURRENT_CONNECTIONS);
17
18