mirror of
https://github.com/MariaDB/server.git
synced 2025-08-30 11:22:14 +03:00
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
7 lines
300 B
Plaintext
7 lines
300 B
Plaintext
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'
|