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