mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
67a48e1a4c
Part V: performance schema implementation
7 lines
565 B
Text
7 lines
565 B
Text
alter table performance_schema.EVENTS_WAITS_CURRENT add column foo integer;
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|
|
truncate table performance_schema.EVENTS_WAITS_CURRENT;
|
|
ALTER TABLE performance_schema.EVENTS_WAITS_CURRENT ADD INDEX test_index(EVENT_ID);
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|
|
CREATE UNIQUE INDEX test_index ON performance_schema.EVENTS_WAITS_CURRENT(EVENT_ID);
|
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
|