I am trying to add a fulltext index against a table, but it does not seem to apply.
ADD FULLTEXT `genre` (
`genre`
)
The query executes, but the cardinality remains at just 1 (even though i ahve a few thousand records)
I tried ANALYZE, REPAIR and neither seemed to update the index. If I create a regular index the cardinality is updated immediately.
A select against the index returns ans empty set, even though i know of matches.