From a5430f454c4da479adb97bc725af8e1138e838b0 Mon Sep 17 00:00:00 2001 From: Andrei Elkin Date: Fri, 26 Feb 2010 14:07:47 +0200 Subject: [PATCH] bug#51089 correcting c&p typos in the test --- mysql-test/suite/rpl/t/rpl_show_slave_running.test | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mysql-test/suite/rpl/t/rpl_show_slave_running.test b/mysql-test/suite/rpl/t/rpl_show_slave_running.test index 9dc93ed7056..62cc311e6b2 100644 --- a/mysql-test/suite/rpl/t/rpl_show_slave_running.test +++ b/mysql-test/suite/rpl/t/rpl_show_slave_running.test @@ -22,7 +22,7 @@ SHOW STATUS LIKE 'Slave_running'; let $status= query_get_value("show slave status", Slave_IO_Running, 1); echo Slave_IO_Running= $status; let $status= query_get_value("show slave status", Slave_SQL_Running, 1); -echo Slave_IO_Running= $status; +echo Slave_SQL_Running= $status; # Test 2. The slave IO thread is started but not yet got connected to master # and SQL thread is not started @@ -35,7 +35,7 @@ SHOW STATUS LIKE 'Slave_running'; let $status= query_get_value("show slave status", Slave_IO_Running, 1); echo Slave_IO_Running= $status; let $status= query_get_value("show slave status", Slave_SQL_Running, 1); -echo Slave_IO_Running= $status; +echo Slave_SQL_Running= $status; # Test 3. The slave IO thread is started and got connected to master # and SQL thread is still not started @@ -51,7 +51,7 @@ SHOW STATUS LIKE 'Slave_running'; let $status= query_get_value("show slave status", Slave_IO_Running, 1); echo Slave_IO_Running= $status; let $status= query_get_value("show slave status", Slave_SQL_Running, 1); -echo Slave_IO_Running= $status; +echo Slave_SQL_Running= $status; # Test 4. The slave IO thread is started and got connected to master # and SQL thread is started @@ -65,7 +65,7 @@ SHOW STATUS LIKE 'Slave_running'; let $status= query_get_value("show slave status", Slave_IO_Running, 1); echo Slave_IO_Running= $status; let $status= query_get_value("show slave status", Slave_SQL_Running, 1); -echo Slave_IO_Running= $status; +echo Slave_SQL_Running= $status; # cleanup