mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +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
20 lines
575 B
Text
20 lines
575 B
Text
# This is the test for bug 44369. We should
|
|
# block table creation with columns match
|
|
# some innodb internal reserved key words,
|
|
# both case sensitively and insensitely.
|
|
|
|
--source include/have_innodb.inc
|
|
|
|
# This create table operation should fail.
|
|
--error ER_WRONG_COLUMN_NAME
|
|
create table bug44369 (DB_ROW_ID int) engine=innodb;
|
|
show warnings;
|
|
|
|
# This create should fail as well
|
|
--error ER_WRONG_COLUMN_NAME
|
|
create table bug44369 (db_row_id int) engine=innodb;
|
|
show warnings;
|
|
|
|
--error ER_WRONG_COLUMN_NAME
|
|
create table bug44369 (db_TRX_Id int) engine=innodb;
|
|
show warnings;
|