getGloballySearchableAttributes with translatable fields

I'm not 100% sure but this could be related to you database configuration. Maybe this can help if you are on mysql:
https://stackoverflow.com/questions/500826/how-to-conduct-an-accent-sensitive-search-in-mysql
Stack Overflow
I have a MySQL table with utf8 general ci collation. In the table, I can see two entries:

abad
abád

I am using a query that looks like this:

SELECT * FROM words WHERE word = 'abád'
The query
Was this page helpful?