mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
Merge mysql.com:/windows/Linux_space/MySQL/mysql-5.0-ndb
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1-new-ndb
This commit is contained in:
commit
2ea6d3d680
1 changed files with 8 additions and 0 deletions
|
@ -46,6 +46,14 @@ void ndb_serialize_cond(const Item *item, void *arg)
|
|||
// Check if we are skipping arguments to a function to be evaluated
|
||||
if (context->skip)
|
||||
{
|
||||
if (!item)
|
||||
{
|
||||
DBUG_PRINT("info", ("Unexpected mismatch of found and expected number of function arguments %u", context->skip));
|
||||
sql_print_error("ndb_serialize_cond: Unexpected mismatch of found and "
|
||||
"expected number of function arguments %u", context->skip);
|
||||
context->skip= 0;
|
||||
DBUG_VOID_RETURN;
|
||||
}
|
||||
DBUG_PRINT("info", ("Skiping argument %d", context->skip));
|
||||
context->skip--;
|
||||
switch (item->type()) {
|
||||
|
|
Loading…
Reference in a new issue