2010-11-03 16:42:33 +01:00
|
|
|
alter table performance_schema.cond_instances add column foo integer;
|
2010-01-11 18:47:27 -07:00
|
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|
2010-11-03 16:42:33 +01:00
|
|
|
truncate table performance_schema.cond_instances;
|
2016-10-03 18:49:44 +03:00
|
|
|
ERROR HY000: Invalid performance_schema usage
|
2010-11-03 16:42:33 +01:00
|
|
|
ALTER TABLE performance_schema.cond_instances ADD INDEX test_index(NAME);
|
2010-01-11 18:47:27 -07:00
|
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|
2010-11-03 16:42:33 +01:00
|
|
|
CREATE UNIQUE INDEX test_index ON performance_schema.cond_instances(NAME);
|
2010-01-11 18:47:27 -07:00
|
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|