We are successfully using MATCH AGAINST
in queries to search in our database, which is mostly in Czech, so we use utf8_czech_ci
as default collation. We have set minimum length of query to 1 and we have disabled all the stop words.
However, consider searching for word Schedule
.
When you write:
s
:Schedule
foundsc
: nothing foundsch
:Schedule
found
It looks like it treats ch
as single character (which is correct in Czech language), but certainly incorrect when we do fulltext search.
Is there a way to avoid this behaviour?