mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
4aa9d903c1
Fixed some bugs introduced in 5.1.47 Disabled some tests until we have merged with latest Xtradb configure.in: Added testing if valgrind/memcheck.h exists storage/pbxt/src/ha_pbxt.cc: LOCK_plugin is not anymore locked in init
18 lines
711 B
Text
18 lines
711 B
Text
create table bug44369 (DB_ROW_ID int) engine=innodb;
|
|
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)
|
|
create table bug44369 (db_row_id int) engine=innodb;
|
|
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)
|
|
create table bug44369 (db_TRX_Id int) engine=innodb;
|
|
ERROR 42000: Incorrect column name 'db_TRX_Id'
|
|
show warnings;
|
|
Level Code Message
|
|
Error 1166 Incorrect column name 'db_TRX_Id'
|
|
Error 1005 Can't create table 'test.bug44369' (errno: -1)
|