1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug #12793170 MYSQLTEST: PROVIDE ACCESS TO ERROR NAMES THROUGH NUMERIC CODES AND VICE VERSA

Added a second internal variable $mysql_errname
  This is set the same way as $mysql_errno
  Can be used like "if ($mysql_errname == ER_NO_SUCH_TABLE)...."
This commit is contained in:
Bjorn Munch
2011-08-22 13:58:49 +02:00
parent 07366f2404
commit 4ad7b28cd7
5 changed files with 79 additions and 28 deletions

View File

@ -38,7 +38,7 @@ while ($i)
{
# If we SEGV because the min stack size is exceeded, this would return error
# 2013 .
error 0,1436 //
error 0,ER_STACK_OVERRUN_NEED_MORE //
eval $query_head 0 $query_tail//
if ($mysql_errno)
@ -48,10 +48,10 @@ while ($i)
# limit, we still have enough space reserved to report an error.
let $i = 1//
# Check that mysql_errno is 1436
if ($mysql_errno != 1436)
# Check that mysql_errname is ER_STACK_OVERRUN_NEED_MORE
if ($mysql_errname != ER_STACK_OVERRUN_NEED_MORE)
{
die Wrong error triggered, expected 1436 but got $mysql_errno//
die Wrong error triggered, expected ER_STACK_OVERRUN_NEED_MORE but got $mysql_errname//
}
}
@ -76,7 +76,7 @@ while ($i)
enable_result_log//
enable_query_log//
echo Assertion: mysql_errno 1436 == $mysql_errno//
echo Assertion: mysql_errname ER_STACK_OVERRUN_NEED_MORE == $mysql_errname//
delimiter ;//
DROP TABLE `t_bug21476`;