From 20279c1a7b5073bc12a14e2b1b3291d9840a27ef Mon Sep 17 00:00:00 2001 From: "igor@olga.mysql.com" <> Date: Tue, 23 Jan 2007 10:11:53 -0800 Subject: [PATCH] Post-merge fix. --- mysql-test/t/fulltext_left_join.test | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/mysql-test/t/fulltext_left_join.test b/mysql-test/t/fulltext_left_join.test index f16556b19ed..5942ce119ee 100644 --- a/mysql-test/t/fulltext_left_join.test +++ b/mysql-test/t/fulltext_left_join.test @@ -58,19 +58,6 @@ insert into t2 values (1, 'bword'), (3, 'aword'), (5, ''); select * from t1 left join t2 on m_id = id where match(d, e, f) against ('+aword +bword' in boolean mode); drop table t1,t2; -# -# BUG#14708 -# Inconsistent treatment of NULLs in LEFT JOINed FULLTEXT matching without index -# - -create table t1 (id int not null primary key, d char(200) not null, e char(200)); -insert into t1 values (1, 'aword', null), (2, 'aword', 'bword'), (3, 'bword', null), (4, 'bword', 'aword'), (5, 'aword and bword', null); -select * from t1 where match(d, e) against ('+aword +bword' in boolean mode); -create table t2 (m_id int not null, f char(200), key (m_id)); -insert into t2 values (1, 'bword'), (3, 'aword'), (5, ''); -select * from t1 left join t2 on m_id = id where match(d, e, f) against ('+aword +bword' in boolean mode); -drop table t1,t2; - # # BUG#25637: LEFT JOIN with BOOLEAN FULLTEXT loses left table matches # (this is actually the same bug as bug #14708)