mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
78a3abeced
Problem: Many test cases don't clean up after themselves (fail to drop tables or fail to reset variables). This implies that: (1) check-testcase in the new mtr that currently lives in 5.1-rpl failed. (2) it may cause unexpected results in subsequent tests. Fix: make all tests clean up. Also: cleaned away unnecessary output in rpl_packet.result Also: fixed bug where rpl_log called RESET MASTER with a running slave. This is not supposed to work. Also: removed unnecessary code from rpl_stm_EE_err2 and made it verify that an error occurred. Also: removed unnecessary code from rpl_ndb_ctype_ucs2_def.
29 lines
858 B
Text
29 lines
858 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
drop table if exists t1, t2;
|
|
drop view if exists v1, v2, v3, not_exist_view;
|
|
create table t1 (a int);
|
|
create table t2 (b int);
|
|
create table t3 (c int);
|
|
create view v1 as select * from t1;
|
|
create view v2 as select * from t2;
|
|
create view v3 as select * from t3;
|
|
drop view not_exist_view;
|
|
ERROR 42S02: Unknown table 'not_exist_view'
|
|
drop view v1, not_exist_view;
|
|
ERROR 42S02: Unknown table 'not_exist_view'
|
|
select * from v1;
|
|
ERROR 42S02: Table 'test.v1' doesn't exist
|
|
drop view v2, v3;
|
|
select * from v1;
|
|
ERROR 42S02: Table 'test.v1' doesn't exist
|
|
select * from v2;
|
|
ERROR 42S02: Table 'test.v2' doesn't exist
|
|
select * from v3;
|
|
ERROR 42S02: Table 'test.v3' doesn't exist
|
|
==== clean up ====
|
|
drop table t1, t2, t3;
|