mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
mysql-5.7.39
This commit is contained in:
32
mysql-test/suite/perfschema/t/ddl_processlist.test
Normal file
32
mysql-test/suite/perfschema/t/ddl_processlist.test
Normal file
@ -0,0 +1,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;
|
Reference in New Issue
Block a user