mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +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
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'
|