1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

unsufficient privilege checks in GRANT, when a grantor has column-level privileges

This commit is contained in:
serg@sergbook.mysql.com
2004-12-30 21:01:11 +01:00
parent 72d446ace5
commit 12bf7dcd04
4 changed files with 55 additions and 55 deletions

View File

@@ -121,7 +121,7 @@ create database mysqltest;
create table mysqltest.t1 (a int,b int,c int);
grant all on mysqltest.t1 to mysqltest_1@localhost;
alter table t1 rename t2;
insert command denied to user: 'mysqltest_1@localhost' for table 't2'
INSERT,CREATE command denied to user: 'mysqltest_1@localhost' for table 't2'
revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
delete from mysql.user where user='mysqltest_1';
drop database mysqltest;