mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
ceaca681a6
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
6 lines
300 B
Text
6 lines
300 B
Text
create table bug44369 (DB_ROW_ID int) engine=innodb;
|
|
ERROR 42000: Incorrect column name 'DB_ROW_ID'
|
|
create table bug44369 (db_row_id int) engine=innodb;
|
|
ERROR 42000: Incorrect column name 'db_row_id'
|
|
create table bug44369 (db_TRX_Id int) engine=innodb;
|
|
ERROR 42000: Incorrect column name 'db_TRX_Id'
|