~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-201203300109

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/r/ddl_mutex_instances.result

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2011-11-08 11:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20111108113113-3ulw01fvi4vn8m25
Tags: upstream-5.5.17
ImportĀ upstreamĀ versionĀ 5.5.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
alter table performance_schema.mutex_instances add column foo integer;
 
2
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
 
3
truncate table performance_schema.mutex_instances;
 
4
ERROR HY000: Invalid performance_schema usage.
 
5
ALTER TABLE performance_schema.mutex_instances ADD INDEX test_index(NAME);
 
6
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
 
7
CREATE UNIQUE INDEX test_index ON performance_schema.mutex_instances(NAME);
 
8
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'