mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
d74414399d
10.0 files
29 lines
798 B
Text
29 lines
798 B
Text
# Tests for PERFORMANCE_SCHEMA
|
|
|
|
--source include/not_embedded.inc
|
|
--source include/have_perfschema.inc
|
|
|
|
-- error ER_DBACCESS_DENIED_ERROR
|
|
alter table performance_schema.setup_actors add column foo integer;
|
|
|
|
--disable_warnings
|
|
drop table if exists test.setup_actors;
|
|
--enable_warnings
|
|
|
|
create table test.setup_actors as
|
|
select * from performance_schema.setup_actors;
|
|
|
|
truncate table performance_schema.setup_actors;
|
|
|
|
select count(*) from performance_schema.setup_actors;
|
|
|
|
insert into performance_schema.setup_actors
|
|
select * from test.setup_actors;
|
|
drop table test.setup_actors;
|
|
|
|
-- error ER_DBACCESS_DENIED_ERROR
|
|
ALTER TABLE performance_schema.setup_actors ADD INDEX test_index(HOST);
|
|
|
|
-- error ER_DBACCESS_DENIED_ERROR
|
|
CREATE UNIQUE INDEX test_index ON performance_schema.setup_actors(HOST);
|
|
|