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

Rename select_send::abort() to select_send::abort_result_set()

to be more descriptive.
This commit is contained in:
Alexander Nozdrin
2010-07-28 15:17:19 +04:00
parent c6a34a9961
commit 8909586f16
7 changed files with 20 additions and 20 deletions

View File

@ -3401,7 +3401,7 @@ end_with_restore_list:
res|= thd->is_error();
MYSQL_MULTI_DELETE_DONE(res, del_result->num_deleted());
if (res)
del_result->abort();
del_result->abort_result_set();
delete del_result;
}
else
@ -4858,7 +4858,7 @@ static bool execute_sqlcom_select(THD *thd, TABLE_LIST *all_tables)
ER_YES, str.ptr());
}
if (res)
result->abort();
result->abort_result_set();
else
result->send_eof();
delete result;