diff options
author | Oleksandr Byelkin <sanja@askmonty.org> | 2011-05-31 15:33:14 +0300 |
---|---|---|
committer | Oleksandr Byelkin <sanja@askmonty.org> | 2011-05-31 15:33:14 +0300 |
commit | e89da2e0f1e04fa6291155fce6904310e911b8e9 (patch) | |
tree | 4c19a1f1c309ed3b25ddd840c61cc942c1cd7272 /mysql-test/r/view.result | |
parent | 55d26463ad29c3262b14a9b959adf852b1e650bc (diff) | |
download | mariadb-git-e89da2e0f1e04fa6291155fce6904310e911b8e9.tar.gz |
Return commented out tests.
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index a581b83b133..4eaf1eb4793 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -2881,6 +2881,28 @@ Tables_in_test t1 DROP TABLE t1; DROP VIEW IF EXISTS v1; +CREATE DATABASE bug21261DB; +USE bug21261DB; +CREATE TABLE t1 (x INT); +CREATE SQL SECURITY INVOKER VIEW v1 AS SELECT x FROM t1; +GRANT INSERT, UPDATE ON v1 TO 'user21261'@'localhost'; +GRANT INSERT, UPDATE ON t1 TO 'user21261'@'localhost'; +CREATE TABLE t2 (y INT); +GRANT SELECT ON t2 TO 'user21261'@'localhost'; +INSERT INTO v1 (x) VALUES (5); +UPDATE v1 SET x=1; +GRANT SELECT ON v1 TO 'user21261'@'localhost'; +GRANT SELECT ON t1 TO 'user21261'@'localhost'; +UPDATE v1,t2 SET x=1 WHERE x=y; +SELECT * FROM t1; +x +1 +REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user21261'@'localhost'; +DROP USER 'user21261'@'localhost'; +DROP VIEW v1; +DROP TABLE t1; +DROP DATABASE bug21261DB; +USE test; create table t1 (f1 datetime); create view v1 as select * from t1 where f1 between now() and now() + interval 1 minute; show create view v1; |