summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
authorunknown <evgen@sunlight.local>2006-08-24 03:05:13 +0400
committerunknown <evgen@sunlight.local>2006-08-24 03:05:13 +0400
commitd0394c70708055af5a5914154b1692ba517115f6 (patch)
treef5614b67c8787eeeac6c424061e26044361b1a1c /mysql-test/r/view.result
parente8bb0c9295fd9f1f9df2f16ecf4949ab2b226762 (diff)
downloadmariadb-git-d0394c70708055af5a5914154b1692ba517115f6.tar.gz
view.result, view.test:
Corrected test case for the bug#21261 sql_parse.cc: Corrected fix for bug#21261 mysql-test/t/view.test: Corrected test case for the bug#21261 mysql-test/r/view.result: Corrected test case for the bug#21261 sql/sql_parse.cc: Corrected fix for bug#21261
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r--mysql-test/r/view.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 5b170d056f7..6dc2db09392 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -2861,6 +2861,7 @@ 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