summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/ddl_processlist.test
blob: d960bf2df8949216185c166abc02ce8c1f3f81d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Tests for PERFORMANCE_SCHEMA

--source include/not_embedded.inc

select @@global.performance_schema_show_processlist into @save_processlist;
set @@global.performance_schema_show_processlist = 'on';

--error ER_DBACCESS_DENIED_ERROR
alter table performance_schema.processlist
  add column foo integer;

--error ER_WRONG_PERFSCHEMA_USAGE
truncate table performance_schema.processlist;

--error ER_DBACCESS_DENIED_ERROR
alter table performance_schema.processlist
  add index test_index(info);

--error ER_DBACCESS_DENIED_ERROR
create unique index test_index
  on performance_schema.processlist(host);

-- error ER_DBACCESS_DENIED_ERROR
drop index `PRIMARY`
  on performance_schema.processlist;

CREATE TABLE test.create_select
  AS SELECT * from performance_schema.processlist;

DROP TABLE test.create_select;

set @@global.performance_schema_show_processlist = @save_processlist;