Commit ddd27b40 authored by mats@romeo.(none)'s avatar mats@romeo.(none)

Fixes to make rpl_ndb_dd_advance pass.

parent efaa0f40
...@@ -326,12 +326,12 @@ COUNT(*) ...@@ -326,12 +326,12 @@ COUNT(*)
**** Must make sure slave is clean ***** **** Must make sure slave is clean *****
STOP SLAVE; STOP SLAVE;
RESET SLAVE; RESET SLAVE;
DROP PROCEDURE tpcb.load; DROP PROCEDURE IF EXISTS tpcb.load;
DROP PROCEDURE tpcb.trans; DROP PROCEDURE IF EXISTS tpcb.trans;
DROP TABLE tpcb.account; DROP TABLE IF EXISTS tpcb.account;
DROP TABLE tpcb.teller; DROP TABLE IF EXISTS tpcb.teller;
DROP TABLE tpcb.branch; DROP TABLE IF EXISTS tpcb.branch;
DROP TABLE tpcb.history; DROP TABLE IF EXISTS tpcb.history;
DROP DATABASE tpcb; DROP DATABASE tpcb;
ALTER TABLESPACE ts1 ALTER TABLESPACE ts1
DROP DATAFILE 'datafile.dat' DROP DATAFILE 'datafile.dat'
...@@ -392,8 +392,8 @@ COUNT(*) ...@@ -392,8 +392,8 @@ COUNT(*)
4050 4050
*** DUMP MASTER & SLAVE FOR COMPARE ******** *** DUMP MASTER & SLAVE FOR COMPARE ********
*************** TEST 2 CLEANUP SECTION ******************** *************** TEST 2 CLEANUP SECTION ********************
DROP PROCEDURE tpcb.load; DROP PROCEDURE IF EXISTS tpcb.load;
DROP PROCEDURE tpcb.trans; DROP PROCEDURE IF EXISTS tpcb.trans;
DROP TABLE tpcb.account; DROP TABLE tpcb.account;
DROP TABLE tpcb.teller; DROP TABLE tpcb.teller;
DROP TABLE tpcb.branch; DROP TABLE tpcb.branch;
......
...@@ -385,12 +385,12 @@ while ($j) ...@@ -385,12 +385,12 @@ while ($j)
--connection slave --connection slave
STOP SLAVE; STOP SLAVE;
RESET SLAVE; RESET SLAVE;
DROP PROCEDURE tpcb.load; DROP PROCEDURE IF EXISTS tpcb.load;
DROP PROCEDURE tpcb.trans; DROP PROCEDURE IF EXISTS tpcb.trans;
DROP TABLE tpcb.account; DROP TABLE IF EXISTS tpcb.account;
DROP TABLE tpcb.teller; DROP TABLE IF EXISTS tpcb.teller;
DROP TABLE tpcb.branch; DROP TABLE IF EXISTS tpcb.branch;
DROP TABLE tpcb.history; DROP TABLE IF EXISTS tpcb.history;
DROP DATABASE tpcb; DROP DATABASE tpcb;
ALTER TABLESPACE ts1 ALTER TABLESPACE ts1
...@@ -534,8 +534,8 @@ SELECT COUNT(*) FROM history; ...@@ -534,8 +534,8 @@ SELECT COUNT(*) FROM history;
--echo *************** TEST 2 CLEANUP SECTION ******************** --echo *************** TEST 2 CLEANUP SECTION ********************
connection master; connection master;
DROP PROCEDURE tpcb.load; DROP PROCEDURE IF EXISTS tpcb.load;
DROP PROCEDURE tpcb.trans; DROP PROCEDURE IF EXISTS tpcb.trans;
DROP TABLE tpcb.account; DROP TABLE tpcb.account;
DROP TABLE tpcb.teller; DROP TABLE tpcb.teller;
DROP TABLE tpcb.branch; DROP TABLE tpcb.branch;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment