1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

rpl_misc_functions.result, rpl_misc_functions.test:

work around bug 29537, which was revealed by patch for bug 28356: move DROP TABLE before DROP PROCEDURE in cleanup


mysql-test/suite/rpl/r/rpl_misc_functions.result:
  work around bug 29537, which was revealed by patch for bug 28356: move DROP TABLE before DROP PROCEDURE in cleanup
mysql-test/suite/rpl/t/rpl_misc_functions.test:
  work around bug 29537, which was revealed by patch for bug 28356: move DROP TABLE before DROP PROCEDURE in cleanup
This commit is contained in:
unknown
2007-07-03 19:51:32 -06:00
parent b16b2683e5
commit d7282f136b
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ where ABS(t1.col_a - t1_slave.col_a) < 0.0001 ;
SELECT @aux; SELECT @aux;
@aux @aux
12 12
DROP TABLE t1, t1_slave;
DROP PROCEDURE test_replication_sp1; DROP PROCEDURE test_replication_sp1;
DROP PROCEDURE test_replication_sp2; DROP PROCEDURE test_replication_sp2;
DROP FUNCTION test_replication_sf; DROP FUNCTION test_replication_sf;
DROP TABLE t1, t1_slave;

View File

@ -104,10 +104,10 @@ if (`SELECT @aux <> 12 OR @aux IS NULL`)
# Cleanup # Cleanup
connection master; connection master;
DROP TABLE t1, t1_slave;
DROP PROCEDURE test_replication_sp1; DROP PROCEDURE test_replication_sp1;
DROP PROCEDURE test_replication_sp2; DROP PROCEDURE test_replication_sp2;
DROP FUNCTION test_replication_sf; DROP FUNCTION test_replication_sf;
DROP TABLE t1, t1_slave;
--sync_slave_with_master --sync_slave_with_master