diff options
Diffstat (limited to 'mysql-test/main/myisam.test')
-rw-r--r-- | mysql-test/main/myisam.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/main/myisam.test b/mysql-test/main/myisam.test index 6cdfeb6aefa..ee43383ca65 100644 --- a/mysql-test/main/myisam.test +++ b/mysql-test/main/myisam.test @@ -508,6 +508,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); @@ -539,7 +540,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 # |