2010-11-03 16:42:33 +01:00
|
|
|
alter table performance_schema.events_waits_summary_by_instance add column foo integer;
|
2010-01-12 02:47:27 +01: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.events_waits_summary_by_instance;
|
|
|
|
ALTER TABLE performance_schema.events_waits_summary_by_instance ADD INDEX test_index(EVENT_NAME);
|
2010-01-12 02:47:27 +01: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.events_waits_summary_by_instance(EVENT_NAME);
|
2010-01-12 02:47:27 +01:00
|
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|