According to the Documentation https://mariadb.com/kb/en/library/fulltext-index-overview/ excluded results are partial words. Does it mean when we search for 'rown' in the phrase 'My cat is brown' with the following SQL Query
SELECT mytable.mycolumn FROM mytable
WHERE MATCH (mytable.mycolumn) AGAINST('rown*' IN BOOLEAN MODE);
the result is 0 rows?
Is this correct or I am missing something? WE are using MariaDB version 10.1.26 and InnoDB Engine