From 42a398b59b5c2d08a9cc8c03d6d082a095a2cd77 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Thu, 17 Nov 2016 12:04:39 +0400 Subject: [PATCH] Fixing a typo in the patch for MDEV-10780, which caused default.test failure. Fixing the "connect" command to use "localhost" instead of "127.0.0.1" to make it work with both "mtr" and "mtr --embedded". --- mysql-test/t/default.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/t/default.test b/mysql-test/t/default.test index f386222e497..432df9d4452 100644 --- a/mysql-test/t/default.test +++ b/mysql-test/t/default.test @@ -196,7 +196,7 @@ DROP TABLE t1; --echo # # Note, the problem was not repeatable with a non-fresh connection. ---connect (con1,127.0.0.1,root,,test) +--connect (con1,localhost,root,,test) CREATE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY) ENGINE=MyISAM; INSERT INTO t1 VALUES (); INSERT INTO t1 VALUES ();