summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000013.test
diff options
context:
space:
mode:
authormonty@donna.mysql.fi <>2001-03-25 01:02:26 +0200
committermonty@donna.mysql.fi <>2001-03-25 01:02:26 +0200
commit5487d7a8c01a5ccce90a63a359562cff1bd95b78 (patch)
tree6191242036b4e9061dfd34fc46bf82677415e532 /mysql-test/t/rpl000013.test
parent176147cd31e728185b8b5cb4459d9d9afd1623d5 (diff)
downloadmariadb-git-5487d7a8c01a5ccce90a63a359562cff1bd95b78.tar.gz
Fixed bug in send in mysqltest
Removed usage of @r/result as this made life hard when testing different table handlers. Allow concurrent inserts if no update/binary log. Don't remove key_cache at flush tables. Fixed bug in SELECT DISTINCT SUM()...
Diffstat (limited to 'mysql-test/t/rpl000013.test')
-rw-r--r--mysql-test/t/rpl000013.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/rpl000013.test b/mysql-test/t/rpl000013.test
index f870d017fa3..af693a720d4 100644
--- a/mysql-test/t/rpl000013.test
+++ b/mysql-test/t/rpl000013.test
@@ -25,12 +25,12 @@ disconnect master1;
connection slave;
# same trick to go one more event
sync_with_master 1;
-@r/rpl000013.result select * from t2;
-@r/rpl000013.status.result show status like 'Slave_open_temp_tables';
+select * from t2;
+show status like 'Slave_open_temp_tables';
#
# Clean up
#
-connect (master2,localhost,root,,test,0,mysql-master.sock);
+connect (master2,localhost,root,,);
connection master2;
drop table if exists t1,t2;
save_master_pos;