summaryrefslogtreecommitdiff
path: root/mysql-test/r/skip_grants.result
blob: c0c20eb25bea6a758b44d046f8b61dc5f6b7f85d (plain)
1
2
3
4
5
6
7
8
9
10
drop table if exists t1,v1;
drop view if exists t1,v1;
drop procedure if exists f1;
use test;
create table t1 (field1 INT);
CREATE VIEW v1 AS SELECT field1 FROM t1;
drop view v1;
drop table t1;
create procedure f1() select 1;
drop procedure f1;