Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On a server running MySql 5.0.27, with a very simple query that uses REPLACE --

SELECT familyname, replace('{0} test' , '{0}', `familyname`) AS  `formattedname`
FROM family

I get a result where the second column has only been evaluated once:

familyname   formattedname
Andersen     Andersen test
Baker        Andersen test
Charles      Andersen test

On a development machine running MySql 5.5.9, same query and data, the results are as I would expect:

Andersen     Andersen test
Baker        Baker test
Charles      Charles test

Is this a MySql bug in the older version, or is there some other possibility (a server misconfiguration, an index error, etc?).

Thanks!

share|improve this question
1  
Works fine here. What is the datatype of your familyname column? – Zane Bien Jul 22 '12 at 0:38
sqlfiddle uses mysql 5.5 and the bug apparently only happens on 5.0 – Vatev Jul 22 '12 at 0:46
@Vatev, oh I misread, I did not see the OP was running 5.0.27. – Zane Bien Jul 22 '12 at 0:50

1 Answer

up vote 1 down vote accepted

This is a known bug. It was reported here.
Either you can live with it, or you need to upgrade at least to MySQL 5.1.

And if your software is compatible, why not upgrade to MySQL 5.5?

I found the bug report using the search engine in the Mysql bugs database.

share|improve this answer
Thanks; I'd searched the bug list but using poor search terms. – Graham Charles Jul 22 '12 at 2:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.