diff options
author | acurtis@pcgem.rdg.cyberkinetica.com <> | 2004-12-23 10:46:24 +0000 |
---|---|---|
committer | acurtis@pcgem.rdg.cyberkinetica.com <> | 2004-12-23 10:46:24 +0000 |
commit | b1e30904d5f10d2273819c25cb2dcc251a097bd9 (patch) | |
tree | 1f9ae909b765f73df023264dce5aa52d83e5cb8e /mysql-test/t/show_check.test | |
parent | 8fb20802dc0655cfd5895590d2b417f0c135b237 (diff) | |
download | mariadb-git-b1e30904d5f10d2273819c25cb2dcc251a097bd9.tar.gz |
WL#925 - Privileges for stored routines
Implement fine-grained control over access to stored procedures
Privileges are cached (same way as existing table/column privs)
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 8680da9b31a..566f9f625df 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -287,25 +287,25 @@ connect (con1,localhost,mysqltest_1,,mysqltest); connection con1; select * from t1; show create database mysqltest; ---error 1044 +--error 1142 drop table t1; --error 1044 drop database mysqltest; connect (con2,localhost,mysqltest_2,,test); connection con2; ---error 1044 +--error 1142 select * from mysqltest.t1; --error 1044 show create database mysqltest; ---error 1044 +--error 1142 drop table mysqltest.t1; --error 1044 drop database mysqltest; connect (con3,localhost,mysqltest_3,,test); connection con3; ---error 1044 +--error 1142 select * from mysqltest.t1; --error 1044 show create database mysqltest; |