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

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/r/ddl_ews_by_account_by_event_name.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.events_waits_summary_by_account_by_event_name
 
2
add column foo integer;
 
3
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
 
4
truncate table performance_schema.events_waits_summary_by_account_by_event_name;
 
5
ALTER TABLE performance_schema.events_waits_summary_by_account_by_event_name
 
6
ADD INDEX test_index(USERNAME);
 
7
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'
 
8
CREATE UNIQUE INDEX test_index
 
9
ON performance_schema.events_waits_summary_by_account_by_event_name(USERNAME);
 
10
ERROR 42000: Access denied for user 'root'@'localhost' to database 'performance_schema'