I have an entity with some attributes, and I want to index some of them for full text.
* @Index(name="search", columns={"description", "short_description", "name"}, flags={"fulltext"})})
Now, if I execute the request with MATCH(description, short_description) AGAINST (...), I get:
Unable to find FULLTEXT index matching column list
If I index for full-text only one column:
* @Index(columns={"description"}, flags={"fulltext"})})
And then try using MATCH (description) AGAINST (...) everything works correctly.
So how can I index multiple columns?
Thank.
source
share