diff options
author | unknown <svoj@april.(none)> | 2006-01-13 23:34:38 +0400 |
---|---|---|
committer | unknown <svoj@april.(none)> | 2006-01-13 23:34:38 +0400 |
commit | ca4935e6eac99e7e6efe83f49dcb0554a2840c7d (patch) | |
tree | 1588e9cc810767452c678f10f4312b1a23da0884 /mysql-test/r/fulltext.result | |
parent | b358c5cb1b3bdfc548e6e58f8264d55ce72f9a6d (diff) | |
download | mariadb-git-ca4935e6eac99e7e6efe83f49dcb0554a2840c7d.tar.gz |
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.
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 4 |
1 files changed, 4 insertions, 0 deletions
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; |