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

I'm working with nested sets for my CMS but since MySQL 5.5 I can't move a node.
The following error gets thrown:

Error while reordering docs:Error in MySQL-DB: Invalid SQL:

 SELECT baum2.id AS id,
 COUNT(*) AS level
 FROM elisabeth_tree AS baum1,
 elisabeth_tree AS baum2
 WHERE baum2.lft BETWEEN baum1.lft AND baum1.rgt
 GROUP BY baum2.lft
 ORDER BY ABS(baum2.id - 6);

error: BIGINT UNSIGNED value is out of range in '(lektoren.baum2.id - 6)'
error number: 1690

Has anyone solved this Problem? I already tried to cast some parts but it wasn't successful.

share|improve this question
@user718790, welcome to stackoverflow. – Johan Apr 21 '11 at 11:07

2 Answers

up vote 3 down vote accepted

BIGINT UNSIGNED is unsigned and cannot be negative.

Your expression ABS(lektoren.baum2.id - 6) will use a negative intermediate value if id is less than 6.

Presumably earlier versions implicitly converted to BIGINT SIGNED. You need to do a cast.

Try

ORDER BY ABS(CAST(lectoren.baum2.id AS BIGINT SIGNED) - 6)
share|improve this answer
Yeah, that's it, thanks! :) – user718790 Apr 24 '11 at 20:58
1  
According to the docs here: By default, subtraction between integer operands produces an UNSIGNED result if any operand is UNSIGNED. – Wiseguy Nov 12 '11 at 14:27
I have also faced the same problem after upgrading to Mysql5.5 See here dev.mysql.com/doc/refman/5.5/en/out-of-range-and-overflow.html – Omesh Aug 2 '12 at 10:22

ORDER BY ABS(CAST(lectoren.baum2.id AS BIGINT SIGNED) - 6)

That change would be mysql only.

instead, do

ORDER BY ABS(- 6 + baum2.id);
share|improve this answer

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.