1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-18553: MDEV-16327 pre-requisits part 3: move kill check in one place

Kill check moved from send_data() methids in its wrapper:
send_data_with_check().
This commit is contained in:
Oleksandr Byelkin
2019-09-30 17:20:28 +02:00
parent 1ae02f0e0d
commit a6de640804
5 changed files with 6 additions and 22 deletions

View File

@ -5101,6 +5101,10 @@ public:
{
if (u->lim.check_offset(sent))
return 0;
if (u->thd->killed == ABORT_QUERY)
return 0;
return send_data(items);
}
/*