2010-11-03 16:42:33 +01:00
|
|
|
select * from performance_schema.rwlock_instances limit 1;
|
|
|
|
select * from performance_schema.rwlock_instances
|
2010-01-12 02:47:27 +01:00
|
|
|
where name='FOO';
|
2010-11-03 16:42:33 +01:00
|
|
|
insert into performance_schema.rwlock_instances
|
2010-01-12 02:47:27 +01:00
|
|
|
set name='FOO', object_instance_begin=12;
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'rwlock_instances'
|
|
|
|
update performance_schema.rwlock_instances
|
2010-01-12 02:47:27 +01:00
|
|
|
set name='FOO';
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table 'rwlock_instances'
|
|
|
|
delete from performance_schema.rwlock_instances
|
2010-01-12 02:47:27 +01:00
|
|
|
where name like "wait/%";
|
2010-11-03 16:42:33 +01:00
|
|
|
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'rwlock_instances'
|
|
|
|
delete from performance_schema.rwlock_instances;
|
|
|
|
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'rwlock_instances'
|
|
|
|
LOCK TABLES performance_schema.rwlock_instances READ;
|
2012-08-14 16:23:34 +02:00
|
|
|
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'rwlock_instances'
|
2010-01-12 02:47:27 +01:00
|
|
|
UNLOCK TABLES;
|
2010-11-03 16:42:33 +01:00
|
|
|
LOCK TABLES performance_schema.rwlock_instances WRITE;
|
2012-08-14 16:23:34 +02:00
|
|
|
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'rwlock_instances'
|
2010-01-12 02:47:27 +01:00
|
|
|
UNLOCK TABLES;
|