~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

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