mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB
- Added missing information about database of corresponding table for various types of commands - Update some typos - Reviewed by: <vicentiu@mariadb.org>
This commit is contained in:
@ -22,7 +22,7 @@ NAME TIMER_NAME
|
||||
wait CYCLE
|
||||
insert into performance_schema.setup_timers
|
||||
set name='FOO', timer_name='CYCLE';
|
||||
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'setup_timers'
|
||||
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table `performance_schema`.`setup_timers`
|
||||
update performance_schema.setup_timers
|
||||
set name='FOO';
|
||||
ERROR HY000: Invalid performance_schema usage
|
||||
@ -37,10 +37,10 @@ statement MILLISECOND
|
||||
update performance_schema.setup_timers
|
||||
set timer_name='CYCLE';
|
||||
delete from performance_schema.setup_timers;
|
||||
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'setup_timers'
|
||||
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table `performance_schema`.`setup_timers`
|
||||
delete from performance_schema.setup_timers
|
||||
where name='Wait';
|
||||
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table 'setup_timers'
|
||||
ERROR 42000: DELETE command denied to user 'root'@'localhost' for table `performance_schema`.`setup_timers`
|
||||
LOCK TABLES performance_schema.setup_timers READ;
|
||||
UNLOCK TABLES;
|
||||
LOCK TABLES performance_schema.setup_timers WRITE;
|
||||
|
Reference in New Issue
Block a user