~longbow/percona-server/test51_log_slow_global_control_default

« back to all changes in this revision

Viewing changes to patches/mysql-test.diff

  • Committer: Stewart Smith
  • Date: 2011-08-12 19:00:39 UTC
  • mfrom: (271.1.1 5.1)
  • Revision ID: stewart@flamingspork.com-20110812190039-yqmy4js3t869nntu
mergeĀ binlog-repeatable-fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
3886
3886
 
3887
3887
   -- Dump all databases, there should be none
3888
3888
   -- except those that was created during bootstrap
 
3889
--- a/mysql-test/suite/binlog/r/binlog_bug36391.result
 
3890
+++ b/mysql-test/suite/binlog/r/binlog_bug36391.result
 
3891
@@ -3,8 +3,8 @@
 
3892
 Tables_in_test
 
3893
 t1
 
3894
 FLUSH LOGS;
 
3895
-DROP TABLE t1;
 
3896
+DROP TABLE IF EXISTS t1;
 
3897
 SHOW TABLES;
 
3898
 Tables_in_test
 
3899
 t1
 
3900
-DROP TABLE t1;
 
3901
+DROP TABLE IF EXISTS t1;
 
3902
--- a/mysql-test/suite/binlog/t/binlog_bug36391.test
 
3903
+++ b/mysql-test/suite/binlog/t/binlog_bug36391.test
 
3904
@@ -21,10 +21,10 @@
 
3905
 let $binlog_path= `SELECT CONCAT(@@DATADIR, '$binlog')`;
 
3906
 SHOW TABLES;
 
3907
 FLUSH LOGS;
 
3908
-DROP TABLE t1;
 
3909
+DROP TABLE IF EXISTS t1;
 
3910
 
 
3911
 --exec $MYSQL_BINLOG $binlog_path | $MYSQL test
 
3912
 SHOW TABLES;
 
3913
 
 
3914
 # Clean up
 
3915
-DROP TABLE t1;
 
3916
+DROP TABLE IF EXISTS t1;