mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
switched to new syntax (TYPE->ENGINE)
check of memory allocation operation was added mysql-test/r/subselect_innodb.result: switched to new syntax mysql-test/t/subselect_innodb.test: switched to new syntax sql/sql_select.cc: check of memory allocation operation
This commit is contained in:
@ -1586,7 +1586,8 @@ mysql_select(THD *thd, Item ***rref_pointer_array,
|
||||
}
|
||||
else
|
||||
{
|
||||
join= new JOIN(thd, fields, select_options, result);
|
||||
if (!(join= new JOIN(thd, fields, select_options, result)))
|
||||
DBUG_RETURN(-1);
|
||||
thd->proc_info="init";
|
||||
thd->used_tables=0; // Updated by setup_fields
|
||||
if (join->prepare(rref_pointer_array, tables, wild_num,
|
||||
|
Reference in New Issue
Block a user