Cold someone could explain why this returns true:
SELECT BINARY 'â' RLIKE '[™]';
SELECT BINARY 'é' RLIKE '[©]';
What could be the fix ? Is it some misconfiguration on my part?
UPDATE:
found that using (™|©)
instead of [™©]
would work as a first workaround