I have a table consisting of rows guid, entrytime and body.
It represents a simple news article.
body is of type TEXT and is fulltext 'enabled'.
I have a few random entries to test the text searching, however I get retured strange results.
mysql> select guid, MATCH(body) against ('test') as score from fb.entry;
+------+-------+
| guid | score |
+------+-------+
| 1 | 0 |
| 2 | 0 |
| 5 | 0 |
+------+-------+
3 rows in set (0.01 sec)
Both records 1 and 2 have the substring 'test' in them, 5 does not.
I'm using mySQL 3.23.49 and the table is MyISAM. I'd expect different results. Any suggestions?