mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
subselect with union
new error handling Item_ref bug fixed
This commit is contained in:
@ -1331,6 +1331,7 @@ bool select_insert::send_data(List<Item> &values)
|
||||
|
||||
void select_insert::send_error(uint errcode,const char *err)
|
||||
{
|
||||
//TODO error should be sent at the query processing end
|
||||
::send_error(&thd->net,errcode,err);
|
||||
table->file->extra(HA_EXTRA_NO_CACHE);
|
||||
table->file->activate_all_index(thd);
|
||||
@ -1357,6 +1358,7 @@ bool select_insert::send_eof()
|
||||
if (error)
|
||||
{
|
||||
table->file->print_error(error,MYF(0));
|
||||
//TODO error should be sent at the query processing end
|
||||
::send_error(&thd->net);
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user