1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#11765202: Dbug_violation_helper::~Dbug_violation_helper(): Assertion `!_entered' failed.

Add a missing DBUG_RETURN function test_if_number().
This commit is contained in:
Davi Arnaut
2011-03-14 15:03:22 -03:00
parent 11e879feb6
commit 8da2b4f5d7
3 changed files with 26 additions and 1 deletions

View File

@ -242,7 +242,7 @@ bool test_if_number(NUM_INFO *info, const char *str, uint str_len)
if (str == end)
{
info->is_float = 1; // we can't use variable decimals here
return 1;
DBUG_RETURN(1);
}
DBUG_RETURN(0);
}