Bug #44481 | cast/convert function not working correctly with NULL value | ||
---|---|---|---|
Submitted: | 26 Apr 2009 17:48 | Modified: | 27 Apr 2009 6:18 |
Reporter: | Piotr Kroczynski | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | Ver 14.12 Distrib 5.0.75 | OS: | Linux (Kubuntu 9.04) |
Assigned to: | CPU Architecture: | Any | |
Tags: | cast, convert |
[26 Apr 2009 17:48]
Piotr Kroczynski
[26 Apr 2009 18:06]
Valeriy Kravchuk
Why do you think there is a bug here? NULL is NULL, whatever type it is. And if NULL is an operand in expression, the result is usually NULL. This is expected.
[26 Apr 2009 19:48]
Piotr Kroczynski
Maybe I'm thinking wrong way but for example i want to get something like that: SELECT CAST(MAX(field) AS UNSIGNED) + 1 AS next_number FROM table; For empty table I'm expecting to get 1 as next_number. Maybe my thinking is wrong. I read this earlier today: http://bugs.mysql.com/bug.php?id=2219
[27 Apr 2009 4:10]
Valeriy Kravchuk
Current behavior is intended. You can use functions in your expression to check for NULL and return the result you need for this case. Check http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html#function_ifnull.
[27 Apr 2009 6:18]
Piotr Kroczynski
Ok, my mistake. Didn't know it is intended. Thank for link :) Regards