2009-10-05 16:47:48 +05:30
|
|
|
create table bug44369 (DB_ROW_ID int) engine=innodb;
|
2010-05-26 21:55:40 +03:00
|
|
|
ERROR 42000: Incorrect column name 'DB_ROW_ID'
|
|
|
|
show warnings;
|
|
|
|
Level Code Message
|
|
|
|
Error 1166 Incorrect column name 'DB_ROW_ID'
|
|
|
|
Error 1005 Can't create table 'test.bug44369' (errno: -1)
|
2009-10-05 16:47:48 +05:30
|
|
|
create table bug44369 (db_row_id int) engine=innodb;
|
2010-05-26 21:55:40 +03:00
|
|
|
ERROR 42000: Incorrect column name 'db_row_id'
|
2009-11-02 18:59:44 +04:00
|
|
|
show warnings;
|
2009-10-05 16:47:48 +05:30
|
|
|
Level Code Message
|
2010-05-26 21:55:40 +03:00
|
|
|
Error 1166 Incorrect column name 'db_row_id'
|
2009-10-05 16:47:48 +05:30
|
|
|
Error 1005 Can't create table 'test.bug44369' (errno: -1)
|
|
|
|
create table bug44369 (db_TRX_Id int) engine=innodb;
|
2010-05-26 21:55:40 +03:00
|
|
|
ERROR 42000: Incorrect column name 'db_TRX_Id'
|
2009-11-02 18:59:44 +04:00
|
|
|
show warnings;
|
2009-10-05 16:47:48 +05:30
|
|
|
Level Code Message
|
2010-05-26 21:55:40 +03:00
|
|
|
Error 1166 Incorrect column name 'db_TRX_Id'
|
2009-10-05 16:47:48 +05:30
|
|
|
Error 1005 Can't create table 'test.bug44369' (errno: -1)
|