1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

MDEV-16741 Assertion `m_extra_cache' failed in ha_partition::late_extra_cache

multi_delete sets TABLE::no_cache=1 and should set it to 0 when DELETE is done.
This commit is contained in:
Eugene Kosov
2018-07-16 15:35:16 +03:00
committed by Vladislav Vaintroub
parent ff34436a2e
commit e43bc02e7b
4 changed files with 21 additions and 1 deletions

View File

@ -744,6 +744,7 @@ multi_delete::~multi_delete()
{
TABLE *table= table_being_deleted->table;
table->no_keyread=0;
table->no_cache= 0;
}
for (uint counter= 0; counter < num_of_tables; counter++)