2010-11-03 16:42:33 +01:00
|
|
|
select * from performance_schema.events_waits_current
|
2010-01-11 18:47:27 -07:00
|
|
|
where event_name like 'Wait/Synch/%' limit 1;
|
2010-11-03 16:42:33 +01:00
|
|
|
select * from performance_schema.events_waits_current
|
2010-01-11 18:47:27 -07:00
|
|
|
where event_name='FOO';
|
2010-11-03 16:42:33 +01:00
|
|
|
insert into performance_schema.events_waits_current
|
2010-01-11 18:47:27 -07:00
|
|
|
set thread_id='1', event_id=1,
|
|
|
|
event_name='FOO', timer_start=1, timer_end=2, timer_wait=3;
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'events_waits_current'
|
|
|
|
update performance_schema.events_waits_current
|
2010-01-11 18:47:27 -07:00
|
|
|
set timer_start=12;
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table 'events_waits_current'
|
|
|
|
update performance_schema.events_waits_current
|
2010-01-11 18:47:27 -07:00
|
|
|
set timer_start=12 where thread_id=0;
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table 'events_waits_current'
|
|
|
|
delete from performance_schema.events_waits_current
|
2010-01-11 18:47:27 -07:00
|
|
|
where thread_id=1;
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'events_waits_current'
|
|
|
|
delete from performance_schema.events_waits_current;
|
|
|
|
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'events_waits_current'
|
|
|
|
LOCK TABLES performance_schema.events_waits_current READ;
|
2012-08-14 17:23:34 +03:00
|
|
|
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'events_waits_current'
|
2010-01-11 18:47:27 -07:00
|
|
|
UNLOCK TABLES;
|
2010-11-03 16:42:33 +01:00
|
|
|
LOCK TABLES performance_schema.events_waits_current WRITE;
|
2012-08-14 17:23:34 +03:00
|
|
|
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'events_waits_current'
|
2010-01-11 18:47:27 -07:00
|
|
|
UNLOCK TABLES;
|