mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 08:15:31 +02:00
post-merge
This commit is contained in:
parent
b99bea6704
commit
31c4511d17
13 changed files with 87 additions and 91 deletions
|
|
@ -382,19 +382,19 @@ show create database mysqltest;
|
|||
Database Create Database
|
||||
mysqltest CREATE DATABASE `mysqltest` /*!40100 DEFAULT CHARACTER SET latin1 */
|
||||
drop table t1;
|
||||
ERROR 42000: drop command denied to user 'mysqltest_1'@'localhost' for table 't1'
|
||||
ERROR 42000: DROP command denied to user 'mysqltest_1'@'localhost' for table 't1'
|
||||
drop database mysqltest;
|
||||
ERROR 42000: Access denied for user 'mysqltest_1'@'localhost' to database 'mysqltest'
|
||||
select * from mysqltest.t1;
|
||||
ERROR 42000: select command denied to user 'mysqltest_2'@'localhost' for table 't1'
|
||||
ERROR 42000: SELECT command denied to user 'mysqltest_2'@'localhost' for table 't1'
|
||||
show create database mysqltest;
|
||||
ERROR 42000: Access denied for user 'mysqltest_2'@'localhost' to database 'mysqltest'
|
||||
drop table mysqltest.t1;
|
||||
ERROR 42000: drop command denied to user 'mysqltest_2'@'localhost' for table 't1'
|
||||
ERROR 42000: DROP command denied to user 'mysqltest_2'@'localhost' for table 't1'
|
||||
drop database mysqltest;
|
||||
ERROR 42000: Access denied for user 'mysqltest_2'@'localhost' to database 'mysqltest'
|
||||
select * from mysqltest.t1;
|
||||
ERROR 42000: select command denied to user 'mysqltest_3'@'localhost' for table 't1'
|
||||
ERROR 42000: SELECT command denied to user 'mysqltest_3'@'localhost' for table 't1'
|
||||
show create database mysqltest;
|
||||
ERROR 42000: Access denied for user 'mysqltest_3'@'localhost' to database 'mysqltest'
|
||||
drop table mysqltest.t1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue