diff options
Diffstat (limited to 'mysql-test/suite/perfschema/r/ddl_host_cache.result')
-rw-r--r-- | mysql-test/suite/perfschema/r/ddl_host_cache.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/r/ddl_host_cache.result b/mysql-test/suite/perfschema/r/ddl_host_cache.result new file mode 100644 index 00000000..0f938b5f --- /dev/null +++ b/mysql-test/suite/perfschema/r/ddl_host_cache.result @@ -0,0 +1,7 @@ +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' |