diff options
author | unknown <gkodinov/kgeorge@macbook.gmz> | 2006-11-21 10:25:10 +0200 |
---|---|---|
committer | unknown <gkodinov/kgeorge@macbook.gmz> | 2006-11-21 10:25:10 +0200 |
commit | cab412666eba39347410f1369e56ace47938a76d (patch) | |
tree | c44d2c18e89360773b0b48c5779b7f4511a322dc /mysql-test/r/trigger-grant.result | |
parent | 1fbe1fc3b0ac8ff351e9d6910471c739310df86c (diff) | |
download | mariadb-git-cab412666eba39347410f1369e56ace47938a76d.tar.gz |
Bug #23556: TRUNCATE TABLE still maps to DELETE
- TRUNCATE requires DROP privilege, not DELETE
mysql-test/r/grant.result:
Bug #23556: TRUNCATE TABLE still maps to DELETE
- test case
mysql-test/r/trigger-grant.result:
Bug #23556: TRUNCATE TABLE still maps to DELETE
- updated test case
mysql-test/t/grant.test:
Bug #23556: TRUNCATE TABLE still maps to DELETE
- test case
mysql-test/t/trigger-grant.test:
Bug #23556: TRUNCATE TABLE still maps to DELETE
- updated test case
Diffstat (limited to 'mysql-test/r/trigger-grant.result')
-rw-r--r-- | mysql-test/r/trigger-grant.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/trigger-grant.result b/mysql-test/r/trigger-grant.result index eb211be0270..49c36513fbc 100644 --- a/mysql-test/r/trigger-grant.result +++ b/mysql-test/r/trigger-grant.result @@ -14,8 +14,8 @@ CREATE TABLE t1(num_value INT); CREATE TABLE t2(user_str TEXT); ---> connection: default -GRANT INSERT, DELETE ON mysqltest_db1.t1 TO mysqltest_dfn@localhost; -GRANT INSERT, DELETE ON mysqltest_db1.t2 TO mysqltest_dfn@localhost; +GRANT INSERT, DROP ON mysqltest_db1.t1 TO mysqltest_dfn@localhost; +GRANT INSERT, DROP ON mysqltest_db1.t2 TO mysqltest_dfn@localhost; ---> connection: default GRANT SUPER ON *.* TO mysqltest_dfn@localhost; |