mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge neptunus.(none):/home/msvensson/mysql/my50-m-bug20145
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
This commit is contained in:
@ -1,3 +1,2 @@
|
||||
MySQL error code 150: Foreign key constraint is incorrectly formed
|
||||
Is a named type file
|
||||
Didn't find key on read or update
|
||||
Illegal ndb error code: 1186
|
||||
Illegal error code: 1186
|
||||
|
@ -6,6 +6,18 @@ disable_query_log;
|
||||
eval select LENGTH("$MY_PERROR") > 0 as "have_perror";
|
||||
enable_query_log;
|
||||
|
||||
--exec $MY_PERROR 150
|
||||
--exec $MY_PERROR --silent 120
|
||||
--exec $MY_PERROR 150 > /dev/null
|
||||
--exec $MY_PERROR --silent 120 > /dev/null
|
||||
|
||||
#
|
||||
# Bug#16561 Unknown ERROR msg "ERROR 1186 (HY000): Binlog closed" by perror
|
||||
#
|
||||
|
||||
# As long there is no error code 1186 defined by NDB
|
||||
# we should get a message "Illegal ndb error code: 1186"
|
||||
--error 1
|
||||
--exec $MY_PERROR --ndb 1186 2>&1
|
||||
|
||||
# As there is an error code defined for 1186, expect error
|
||||
--error 1
|
||||
--exec $MY_PERROR 1186 2>&1
|
||||
|
Reference in New Issue
Block a user