diff options
author | unknown <jimw@mysql.com> | 2006-05-01 17:12:51 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2006-05-01 17:12:51 -0700 |
commit | 768e5dcc934c23d0774249485365a97188fd72df (patch) | |
tree | fee2fcebc52ac43c65338d5f2d51709a007012ea /mysql-test/t/view_grant.test | |
parent | 839a5dea8672091fd5a96cef5dff8934d938884b (diff) | |
download | mariadb-git-768e5dcc934c23d0774249485365a97188fd72df.tar.gz |
Fix name of error in view_grant test
mysql-test/t/view_grant.test:
Fix error name
Diffstat (limited to 'mysql-test/t/view_grant.test')
-rw-r--r-- | mysql-test/t/view_grant.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/view_grant.test b/mysql-test/t/view_grant.test index 8335c1de20a..8deff474587 100644 --- a/mysql-test/t/view_grant.test +++ b/mysql-test/t/view_grant.test @@ -32,7 +32,7 @@ grant create view,select on test.* to mysqltest_1@localhost; connect (user1,localhost,mysqltest_1,,test); connection user1; --- error ER_SPECIFIC_ACCESS_DENIED +-- error ER_SPECIFIC_ACCESS_DENIED_ERROR create definer=root@localhost view v1 as select * from mysqltest.t1; create view v1 as select * from mysqltest.t1; # try to modify view without DROP privilege on it |