summaryrefslogtreecommitdiff
path: root/tests/grant.res
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2003-05-07 23:59:24 +0300
committerunknown <monty@mashka.mysql.fi>2003-05-07 23:59:24 +0300
commit7dbdb6638081159603cccb9c4b7a7e81f0cdf2d2 (patch)
treedaddc57eeedc8a9ecec290538f8ecd00e81c06bb /tests/grant.res
parentb213b1e2ff19df149f15123517397a384744871a (diff)
downloadmariadb-git-7dbdb6638081159603cccb9c4b7a7e81f0cdf2d2.tar.gz
Security patch to remove wrong error when one had a global update/delete privilige and a database specific SELECT privilege.
sql/sql_acl.cc: Security patch sql/sql_base.cc: Security patch sql/sql_parse.cc: Security patch tests/grant.pl: Test of security patch tests/grant.res: Test of security patch
Diffstat (limited to 'tests/grant.res')
-rw-r--r--tests/grant.res15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/grant.res b/tests/grant.res
index 44e20db555f..086111ce567 100644
--- a/tests/grant.res
+++ b/tests/grant.res
@@ -195,8 +195,23 @@ Error in execute: select command denied to user: 'grant_user@localhost' for colu
grant SELECT on *.* to grant_user@localhost
Connecting grant_user
update grant_test.test set b=b+1
+update grant_test.test set b=b+1 where a > 0
revoke SELECT on *.* from grant_user@localhost
+grant SELECT on grant_test.* to grant_user@localhost
Connecting grant_user
+update grant_test.test set b=b+1
+update grant_test.test set b=b+1 where a > 0
+grant UPDATE on *.* to grant_user@localhost
+Connecting grant_user
+update grant_test.test set b=b+1
+update grant_test.test set b=b+1 where a > 0
+revoke UPDATE on *.* from grant_user@localhost
+revoke SELECT on grant_test.* from grant_user@localhost
+Connecting grant_user
+update grant_test.test set b=b+1 where a > 0
+Error in execute: select command denied to user: 'grant_user@localhost' for column 'a' in table 'test'
+update grant_test.test set b=b+1
+Error in execute: select command denied to user: 'grant_user@localhost' for column 'b' in table 'test'
select * from test
Error in execute: select command denied to user: 'grant_user@localhost' for table 'test'
grant select on grant_test.test to grant_user@localhost