1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-14 13:41:20 +03:00
Files
mariadb/mysql-test/suite/perfschema/r/ddl_host_cache.result
Sergei Golubchik d74414399d perfschema 5.6.10 initial commit.
10.0 files
2014-05-06 23:20:50 +02:00

8 lines
513 B
Plaintext

alter table performance_schema.host_cache add column foo integer;
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
truncate table performance_schema.host_cache;
ALTER TABLE performance_schema.host_cache ADD INDEX test_index(IP);
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
CREATE UNIQUE INDEX test_index ON performance_schema.host_cache(IP);
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'