mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
67a48e1a4c
Part V: performance schema implementation
23 lines
1.1 KiB
Text
23 lines
1.1 KiB
Text
select * from performance_schema.COND_INSTANCES limit 1;
|
|
NAME OBJECT_INSTANCE_BEGIN
|
|
# #
|
|
select * from performance_schema.COND_INSTANCES
|
|
where name='FOO';
|
|
NAME OBJECT_INSTANCE_BEGIN
|
|
insert into performance_schema.COND_INSTANCES
|
|
set name='FOO', object_instance_begin=12;
|
|
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'COND_INSTANCES'
|
|
update performance_schema.COND_INSTANCES
|
|
set name='FOO';
|
|
ERROR 42000: UPDATE command denied to user 'root'@'localhost' for table 'COND_INSTANCES'
|
|
delete from performance_schema.COND_INSTANCES
|
|
where name like "wait/%";
|
|
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'COND_INSTANCES'
|
|
delete from performance_schema.COND_INSTANCES;
|
|
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'COND_INSTANCES'
|
|
LOCK TABLES performance_schema.COND_INSTANCES READ;
|
|
ERROR 42000: SELECT,LOCK TABL command denied to user 'root'@'localhost' for table 'COND_INSTANCES'
|
|
UNLOCK TABLES;
|
|
LOCK TABLES performance_schema.COND_INSTANCES WRITE;
|
|
ERROR 42000: SELECT,LOCK TABL command denied to user 'root'@'localhost' for table 'COND_INSTANCES'
|
|
UNLOCK TABLES;
|