~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_drop_view.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include/master-slave.inc
 
2
[connection master]
 
3
drop table if exists t1, t2;
 
4
drop view if exists v1, v2, v3, not_exist_view;
 
5
create table t1 (a int);
 
6
create table t2 (b int);
 
7
create table t3 (c int);
 
8
create view v1 as select * from t1;
 
9
create view v2 as select * from t2;
 
10
create view v3 as select * from t3;
 
11
drop view not_exist_view;
 
12
ERROR 42S02: Unknown table 'not_exist_view'
 
13
drop view v1, not_exist_view;
 
14
ERROR 42S02: Unknown table 'not_exist_view'
 
15
select * from v1;
 
16
ERROR 42S02: Table 'test.v1' doesn't exist
 
17
drop view v2, v3;
 
18
select * from v1;
 
19
ERROR 42S02: Table 'test.v1' doesn't exist
 
20
select * from v2;
 
21
ERROR 42S02: Table 'test.v2' doesn't exist
 
22
select * from v3;
 
23
ERROR 42S02: Table 'test.v3' doesn't exist
 
24
==== clean up ====
 
25
drop table t1, t2, t3;
 
26
include/rpl_end.inc