2010-11-03 16:42:33 +01:00
|
|
|
alter table performance_schema.file_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.file_instances;
|
2010-01-11 18:47:27 -07:00
|
|
|
ERROR HY000: Invalid performance_schema usage.
|
2010-11-03 16:42:33 +01:00
|
|
|
ALTER TABLE performance_schema.file_instances ADD INDEX test_index(FILE_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.file_instances(FILE_NAME);
|
2010-01-11 18:47:27 -07:00
|
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|