blob: db79022cbb40ca74497a7b04aaad10725831a83f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
ALTER TABLE performance_schema.replication_applier_configuration
ADD COLUMN foo integer;
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
TRUNCATE TABLE performance_schema.replication_applier_configuration;
ERROR HY000: Invalid performance_schema usage
ALTER TABLE performance_schema.replication_applier_configuration
ADD INDEX test_index(desired_delay);
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
CREATE UNIQUE INDEX test_index ON
performance_schema.replication_applier_configuration(desired_delay);
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|