summaryrefslogtreecommitdiff
path: root/mysql-test/main/myisam.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/myisam.test')
-rw-r--r--mysql-test/main/myisam.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/main/myisam.test b/mysql-test/main/myisam.test
index c087af7b9a9..ec49e71bc2d 100644
--- a/mysql-test/main/myisam.test
+++ b/mysql-test/main/myisam.test
@@ -505,6 +505,7 @@ drop table t1;
# Bug #14400 Join could miss concurrently inserted row
#
# Partial key.
+--disable_service_connection
create table t1 (a int not null, primary key(a));
create table t2 (a int not null, b int not null, primary key(a,b));
insert into t1 values (1),(2),(3),(4),(5),(6);
@@ -536,7 +537,7 @@ SELECT t1.c1 AS t1c1, t2.c1 AS t2c1 FROM t1, t2
WHERE t1.c1 = t2.c1 HAVING t1c1 != t2c1;
UNLOCK TABLES;
DROP TABLE t1,t2;
-
+--enable_service_connection
# End of 4.0 tests
#