summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2004-07-20 01:01:02 +0300
committerunknown <bell@sanja.is.com.ua>2004-07-20 01:01:02 +0300
commitf0957bcc619984284eb405e1410bd9718f6e8fd6 (patch)
tree587812d38fd1f56588780d81461ee509a82118b2 /mysql-test/r
parent7d91d3f0bf0377a3333ae8eff41a1dbe855d9621 (diff)
downloadmariadb-git-f0957bcc619984284eb405e1410bd9718f6e8fd6.tar.gz
fixed case when frivileges check switched off (BUG#4631)
mysql-test/r/view.result: test made more environment independed mysql-test/t/view.test: test made more environment independed sql/sql_acl.cc: fixed case when frivileges check switched off
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/view.result4
-rw-r--r--mysql-test/r/view_skip_grants.result6
2 files changed, 8 insertions, 2 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 37e9c8fc2fa..3a642f51e1e 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -1,5 +1,5 @@
-drop table if exists t1,t2;
-drop view if exists v1,v2,v3,v4,v5,v6;
+drop table if exists t1,t2,v1,v2,v3,v4,v5,v6;
+drop view if exists t1,t2,v1,v2,v3,v4,v5,v6;
drop database if exists mysqltest;
use test;
create view v1 (c,d) as select a,b from t1;
diff --git a/mysql-test/r/view_skip_grants.result b/mysql-test/r/view_skip_grants.result
new file mode 100644
index 00000000000..48cb9f2aa25
--- /dev/null
+++ b/mysql-test/r/view_skip_grants.result
@@ -0,0 +1,6 @@
+drop table if exists t1,v1;
+drop view if exists t1,v1;
+use test;
+create table t1 (field1 INT);
+CREATE VIEW v1 AS SELECT field1 FROM t1;
+drop view v1;