I think the '+' will not get into the index in the first place. So, there's
probably no way to get a search to use the index. However if you want a
consistant query format for your search you could probably get the correct
result by wrapping the search term in double quotes:
select f1 from t1 where match(f1) against ('"c++"' in boolean mode);
HTH,
James
At 12:30 pm -0700 10/5/06, klute wrote:
>Is there any way I can search for a term such as 'c++'
>using a fulltext search index?
>select f1 from t1 where match(f1) against('c++' in
>boolean mode);
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]