From ca4935e6eac99e7e6efe83f49dcb0554a2840c7d Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 13 Jan 2006 23:34:38 +0400 Subject: BUG#14194: Problem with fulltext boolean search and apostrophe Fixed that single apostrophe was considered as a word character. mysql-test/r/fulltext.result: A test case for BUG#14194 added. mysql-test/t/fulltext.test: A test case for BUG#14194 added. storage/myisam/ftdefs.h: Fixed that single apostrophe was considered as a word character. --- mysql-test/r/fulltext.result | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mysql-test/r') diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 7e2e0a56212..798c510506d 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -436,4 +436,8 @@ testword'' SELECT a FROM t1 WHERE MATCH a AGAINST('testword\'\'' IN BOOLEAN MODE); a testword'' +INSERT INTO t1 VALUES('test\'s'); +SELECT a FROM t1 WHERE MATCH a AGAINST('test' IN BOOLEAN MODE); +a +test's DROP TABLE t1; -- cgit v1.2.1