Bug #18551 | Incorrect integer value | ||
---|---|---|---|
Submitted: | 27 Mar 2006 18:26 | Modified: | 27 Mar 2006 19:16 |
Reporter: | Daniel Brabec | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 5.0.19 | OS: | Windows (WinXP) |
Assigned to: | CPU Architecture: | Any |
[27 Mar 2006 18:26]
Daniel Brabec
[27 Mar 2006 19:12]
Peter Laursen
@Daniel this is an sql_mode issue. To have the old behaviour you should execute set sql_mode = ''; -- empty string means 'traditional MySQL-mode' Refer to: http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html Also if you use the configuration wizard at install you may specify this as the default for connections. Also note that TYPE is depreciated - use ENGINE instead.
[27 Mar 2006 19:16]
MySQL Verification Team
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.mysql.com/documentation/ and the instructions on how to report a bug at http://bugs.mysql.com/how-to-report.php Additional info: Thank you for the bug report. You already got the correct answer from Mr. Peter Laursen.
[21 Jul 2006 20:29]
Troy Vitullo
I found that global.sql_mode='' gives me different behavior than global.sql_mode=TRADITIONAL. With the former I was still able to insert blank integers surrounded by quotes. With the latter I could finally get an error instead of a warning, which is what I wanted. This is MySQL 5.0.22 windows. I take this behavior to mean that 'traditional MySQL-mode' is different than setting mysql to TRADITIONAL. Troy Vitullo