diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-03-04 12:20:10 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-03-10 14:11:02 +0200 |
commit | 0ed57e34c76ffa5e457e1abb402ada6352fb52b2 (patch) | |
tree | 60996746ea8a4b783a6dd55ed9c7e0aae0e68a25 /mysql-test/r/information_schema.result | |
parent | c8035da9b8d037b43c27268b37df40e587780bec (diff) | |
download | mariadb-git-0ed57e34c76ffa5e457e1abb402ada6352fb52b2.tar.gz |
MDEV-7025 ANALYZE SELECT/INSERT/UPDATE/DELETE from a view does not check access permissions on the view
Added access checking for the ANALYZE statement command.
Diffstat (limited to 'mysql-test/r/information_schema.result')
-rw-r--r-- | mysql-test/r/information_schema.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/information_schema.result b/mysql-test/r/information_schema.result index 3bfb8d84904..1af69857371 100644 --- a/mysql-test/r/information_schema.result +++ b/mysql-test/r/information_schema.result @@ -240,7 +240,7 @@ where table_schema = 'mysqltest' and table_name = 'v1'; table_name column_name privileges v1 c select explain select * from v1; -ERROR HY000: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table +ERROR HY000: ANALYZE/EXPLAIN/SHOW can not be issued; lacking privileges for underlying table drop view v1, mysqltest.v1; drop tables mysqltest.t4, mysqltest.t1, t2, t3, t5; drop database mysqltest; |