Bug #26600 | table PROFILING in INFORMATION SCHEMA has wrong data type | ||
---|---|---|---|
Submitted: | 23 Feb 2007 16:42 | Modified: | 11 Apr 2007 2:30 |
Reporter: | Giuseppe Maxia | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Information schema | Severity: | S3 (Non-critical) |
Version: | 5.0.35 (Community tree) | OS: | Linux (Linux, Mac OS X) |
Assigned to: | Chad MILLER | CPU Architecture: | Any |
Tags: | information_schema, show |
[23 Feb 2007 16:42]
Giuseppe Maxia
[22 Mar 2007 15:05]
Chad MILLER
No information-schema table has every had a floating-point column before. It has to be added, and it should be done in enterprise.
[26 Mar 2007 18:21]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/22952 ChangeSet@1.2415, 2007-03-26 14:21:30-04:00, cmiller@zippy.cornsilk.net +1 -0 Bug#26600: table PROFILING in INFORMATION SCHEMA has wrong data type Bug#27047[partial]: INFORMATION_SCHEMA table cannot have BIGINT \ fields No Information_schema table has ever needed floating-point data before. Transforming all floating point to a string and back to a number causes a real data problem on Windows, where the libc may pad the exponent with more leading zeroes than we expect and the significant digits are truncated away. This also makes interpreting an unimplemented type as a string into a fatal error in debug builds. Thus, we will catch problems when we try to use those types in new I_S tables.
[27 Mar 2007 15:31]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/23028 ChangeSet@1.2415, 2007-03-27 11:30:53-04:00, cmiller@zippy.cornsilk.net +1 -0 Bug#26600: table PROFILING in INFORMATION SCHEMA has wrong data type Bug#27047[partial]: INFORMATION_SCHEMA table cannot have BIGINT \ fields No Information_schema table has ever needed floating-point data before. Transforming all floating point to a string and back to a number causes a real data problem on Windows, where the libc may pad the exponent with more leading zeroes than we expect and the significant digits are truncated away. This also makes interpreting an unimplemented type as a string into a fatal error in debug builds. Thus, we will catch problems when we try to use those types in new I_S tables.
[6 Apr 2007 17:22]
Bugs System
Pushed into 5.0.40
[6 Apr 2007 17:25]
Bugs System
Pushed into 5.1.18-beta
[11 Apr 2007 2:30]
Paul DuBois
No changelog entry needed because no I_S table uses the new types yet.