diff options
author | monty@mashka.mysql.fi <> | 2003-03-14 17:08:42 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-03-14 17:08:42 +0200 |
commit | 5ee1dbbe583e3269eddc6a5c16eb1bd0a8cc6a07 (patch) | |
tree | 2c4870b4c69060f127e0c4aca401c4312128a363 /tests/grant.res | |
parent | 6c81552dd3edc97ba2bfea9bccaff9d1ecb2b132 (diff) | |
download | mariadb-git-5ee1dbbe583e3269eddc6a5c16eb1bd0a8cc6a07.tar.gz |
Check for empty table/column names
Diffstat (limited to 'tests/grant.res')
-rw-r--r-- | tests/grant.res | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/grant.res b/tests/grant.res index 1c74e5b1d1b..44e20db555f 100644 --- a/tests/grant.res +++ b/tests/grant.res @@ -192,6 +192,11 @@ update grant_test.test set b=3 where b=1 Error in execute: select command denied to user: 'grant_user@localhost' for column 'b' 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' +grant SELECT on *.* to grant_user@localhost +Connecting grant_user +update grant_test.test set b=b+1 +revoke SELECT on *.* from grant_user@localhost +Connecting grant_user 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 |