diff options
author | Anel Husakovic <anel@mariadb.org> | 2022-07-16 14:39:17 +0200 |
---|---|---|
committer | Anel <an3l@users.noreply.github.com> | 2022-09-30 08:48:57 +0200 |
commit | 1f51d6c0f6527324dfe7c066fc60fc2292ea7e11 (patch) | |
tree | d66f53de3b296ee131a038055cd98b737778389e /mysql-test/suite/rpl/r | |
parent | f9605eb20947f5533cfe74dda44c9a22b43c551f (diff) | |
download | mariadb-git-1f51d6c0f6527324dfe7c066fc60fc2292ea7e11.tar.gz |
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>
Diffstat (limited to 'mysql-test/suite/rpl/r')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_sp.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_sp.result b/mysql-test/suite/rpl/r/rpl_sp.result index 5216a3b0a44..a4e8e6e6a38 100644 --- a/mysql-test/suite/rpl/r/rpl_sp.result +++ b/mysql-test/suite/rpl/r/rpl_sp.result @@ -305,7 +305,7 @@ a 100 connection con1; create trigger trg before insert on t1 for each row set new.a= 10; -ERROR 42000: TRIGGER command denied to user 'zedjzlcsjhd'@'localhost' for table 't1' +ERROR 42000: TRIGGER command denied to user 'zedjzlcsjhd'@'localhost' for table `mysqltest1`.`t1` connection master; delete from t1; create trigger trg before insert on t1 for each row set new.a= 10; |