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:
@ -174,9 +174,9 @@ create sequence s_db.s2;
|
||||
drop sequence s_db.s2;
|
||||
connection m_normal_2;
|
||||
select next value for s_db.s1;
|
||||
ERROR 42000: INSERT command denied to user 'normal_2'@'localhost' for table 's1'
|
||||
ERROR 42000: INSERT command denied to user 'normal_2'@'localhost' for table `s_db`.`s1`
|
||||
create sequence s_db.s2;
|
||||
ERROR 42000: CREATE command denied to user 'normal_2'@'localhost' for table 's2'
|
||||
ERROR 42000: CREATE command denied to user 'normal_2'@'localhost' for table `s_db`.`s2`
|
||||
connection m_normal_1;
|
||||
drop sequence s_db.s1;
|
||||
###########################################
|
||||
@ -796,11 +796,11 @@ select previous value for s1;
|
||||
previous value for s1
|
||||
NULL
|
||||
insert into t1 values (2);
|
||||
ERROR 42000: INSERT command denied to user 'normal_5'@'localhost' for table 't1'
|
||||
ERROR 42000: INSERT command denied to user 'normal_5'@'localhost' for table `test`.`t1`
|
||||
select next value for s1;
|
||||
ERROR 42000: INSERT command denied to user 'normal_5'@'localhost' for table 's1'
|
||||
ERROR 42000: INSERT command denied to user 'normal_5'@'localhost' for table `test`.`s1`
|
||||
do setval(s1,1000,0);
|
||||
ERROR 42000: INSERT command denied to user 'normal_5'@'localhost' for table 's1'
|
||||
ERROR 42000: INSERT command denied to user 'normal_5'@'localhost' for table `test`.`s1`
|
||||
connection master;
|
||||
grant insert on test.* to normal_5@'%' identified by 'pass';
|
||||
disconnect m_normal_3;
|
||||
|
Reference in New Issue
Block a user