I am trying to perform a search for users based on a full-text search.
SELECT * FROM users WHERE MATCH ( name ) AGAINST ( 'FDR' IN BOOLEAN MODE );
However the query yields no results. I can replace the search value with other strings and yield results.
I have even tried using a null stop word list with no success. The problem seems to with this particular string.