1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge branch '11.8' into 12.0

This commit is contained in:
Oleksandr Byelkin
2025-06-18 07:50:39 +02:00
271 changed files with 4921 additions and 1348 deletions

View File

@@ -1662,6 +1662,10 @@ int multi_delete::rowid_table_deletes(TABLE *table, bool ignore)
err:
if (err_table)
err_table->file->print_error(local_error,MYF(ME_FATAL));
if (tmp_table->file->inited == handler::init_stat::RND)
tmp_table->file->ha_rnd_end();
if (table->file->inited == handler::init_stat::RND)
table->file->ha_rnd_end();
DBUG_RETURN(local_error);
}