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

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/r/dml_esms_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
select * from performance_schema.events_statements_summary_by_account_by_event_name
 
2
where event_name like 'statement/%' limit 1;
 
3
select * from performance_schema.events_statements_summary_by_account_by_event_name
 
4
where event_name='FOO';
 
5
insert into performance_schema.events_statements_summary_by_account_by_event_name
 
6
set event_name='FOO', user='BAR', host='BAZ',
 
7
count_star=1, sum_timer_wait=2, min_timer_wait=3,
 
8
avg_timer_wait=4, max_timer_wait=5;
 
9
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
10
update performance_schema.events_statements_summary_by_account_by_event_name
 
11
set count_star=12;
 
12
ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
13
update performance_schema.events_statements_summary_by_account_by_event_name
 
14
set count_star=12 where event_name like "FOO";
 
15
ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
16
delete from performance_schema.events_statements_summary_by_account_by_event_name
 
17
where count_star=1;
 
18
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
19
delete from performance_schema.events_statements_summary_by_account_by_event_name;
 
20
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
21
LOCK TABLES performance_schema.events_statements_summary_by_account_by_event_name READ;
 
22
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
23
UNLOCK TABLES;
 
24
LOCK TABLES performance_schema.events_statements_summary_by_account_by_event_name WRITE;
 
25
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'events_statements_summary_by_account_by_event_name'
 
26
UNLOCK TABLES;