Bug #16760 | Incorrect Column Specifier | ||
---|---|---|---|
Submitted: | 24 Jan 2006 23:48 | Modified: | 14 Jun 2006 15:13 |
Reporter: | Ilya Tsymbal | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Migration Toolkit | Severity: | S3 (Non-critical) |
Version: | 1.0.21 rc | OS: | Windows (Windows XP) |
Assigned to: | Michael G. Zinner | CPU Architecture: | Any |
[24 Jan 2006 23:48]
Ilya Tsymbal
[24 Jan 2006 23:53]
Paul DuBois
The problem: AUTO_INCREMENT is legal only for integer data types.
[25 Jan 2006 12:21]
MySQL Verification Team
Thank you for the bug report. DROP TABLE IF EXISTS `bugdb_dbo`.`TABLE2`; CREATE TABLE `bugdb_dbo`.`TABLE2` ( `UNIQUEid` DECIMAL(18, 0) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`UNIQUEid`), INDEX `PRIMARY` (`UNIQUEid`) ) ENGINE = INNODB;
[14 Jun 2006 15:13]
Michael G. Zinner
Thank you for your bug report. This issue has been committed to our source repository of that product and will be incorporated into the next release. If necessary, you can access the source repository and build the latest available version, including the bugfix, yourself. More information about accessing the source trees is available at http://www.mysql.com/doc/en/Installing_source_tree.html
[8 Jan 2013 7:20]
Rupesh Patil
create table `test`.`bitDatatyTableExam`( `col1` bit(12) NOT NULL AUTO_INCREMENT , PRIMARY KEY (`col1`) ) i am trying create above table but i got following error Incorrect column specifier for column 'col1'