You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
617 B

  1. alter table performance_schema.EVENTS_WAITS_SUMMARY_BY_INSTANCE add column foo integer;
  2. ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
  3. truncate table performance_schema.EVENTS_WAITS_SUMMARY_BY_INSTANCE;
  4. ALTER TABLE performance_schema.EVENTS_WAITS_SUMMARY_BY_INSTANCE ADD INDEX test_index(EVENT_NAME);
  5. ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
  6. CREATE UNIQUE INDEX test_index ON performance_schema.EVENTS_WAITS_SUMMARY_BY_INSTANCE(EVENT_NAME);
  7. ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'