summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <msvensson@pilot.mysql.com>2008-03-14 15:25:11 +0100
committerunknown <msvensson@pilot.mysql.com>2008-03-14 15:25:11 +0100
commitaa704387007eab9d42d0dd9a5a906772e5f3a6de (patch)
tree53b1dbbf917fb359527a685399ff649e4c14eb32
parenta79fac5d5a130533d3562b7a6c1ce2bd0cac6444 (diff)
downloadmariadb-git-aa704387007eab9d42d0dd9a5a906772e5f3a6de.tar.gz
Revert extra debug printouts
-rw-r--r--mysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result3
-rw-r--r--mysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test13
2 files changed, 0 insertions, 16 deletions
diff --git a/mysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result b/mysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result
index 96e50da739b..e4b5e9b9216 100644
--- a/mysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result
+++ b/mysql-test/suite/rpl_ndb/r/rpl_ndb_circular.result
@@ -5,15 +5,12 @@ reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
RESET MASTER;
-Last errno after reset master on slave: 0
CHANGE MASTER TO master_host="127.0.0.1",master_port=SLAVE_PORT,master_user="root";
START SLAVE;
-Last errno after start slave: 0
CREATE TABLE t1 (a int key, b int) ENGINE=ndb;
SHOW TABLES;
Tables_in_test
t1
-Last errno after table on both: 0
INSERT INTO t1 VALUES (1,2);
INSERT INTO t1 VALUES (2,3);
SELECT * FROM t1 ORDER BY a;
diff --git a/mysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test b/mysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test
index 54c7f9c0621..f6ef21625a8 100644
--- a/mysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test
+++ b/mysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test
@@ -6,21 +6,12 @@
--connection slave
RESET MASTER;
-# Check Last_IO_Errno
-let $the_last_errno= query_get_value(SHOW SLAVE STATUS, Last_IO_Errno, 1);
-echo Last errno after reset master on slave: $the_last_errno;
-
--connection master
-
--replace_result $SLAVE_MYPORT SLAVE_PORT
--eval CHANGE MASTER TO master_host="127.0.0.1",master_port=$SLAVE_MYPORT,master_user="root"
START SLAVE;
-# Check Last_errno
-let $the_last_errno= query_get_value(SHOW SLAVE STATUS, Last_IO_Errno, 1);
-echo Last errno after start slave: $the_last_errno;
-
# create the table on the "slave"
--connection slave
CREATE TABLE t1 (a int key, b int) ENGINE=ndb;
@@ -31,10 +22,6 @@ CREATE TABLE t1 (a int key, b int) ENGINE=ndb;
# now we should have a table on the master as well
SHOW TABLES;
-# Check Last_errno
-let $the_last_errno= query_get_value(SHOW SLAVE STATUS, Last_IO_Errno, 1);
-echo Last errno after table on both: $the_last_errno;
-
# insert some values on the slave and master
--connection master
INSERT INTO t1 VALUES (1,2);