Anonymous - 2009-04-29

Originally posted by: rosenfie...@gmail.com

This is an issue in MySQL Server, it can be reported at http://bugs.mysql.com/.

The output from md5() is ASCII text and numbers, therefore md5() should return it
with a collation representing text.

Instead, md5() currently returns collation id 63 (BINARY, same as is normally used
for BLOB fields) to the client.

Workaround:
  SELECT CONVERT(md5('test') USING latin1)

Labels: Severity-Broken
Status: Upstream