>>>>> "Ondrej" == Ondrej Sury <ondrej@stripped> writes:
Ondrej> Piet Wesselman <pwessel@stripped> writes:
>> I just upgraded to 3.23.3. In my data several languages are used, so the new
>> feature (described in D.1.5 Changes in release 3.23.0):
>>
>> Changed LIKE character comparison to behave as =; This
>> means that 'e' LIKE 'é' is now true.
Ondrej> Is there a way how to disable this feature?
Ondrej> So result of 'SELECT "brána" LIKE "brana";' is false.
Just define the first column to be BINARY or use:
SELECT BINARY "brána" LIKE "brana";
Regards,
Monty