1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Merge 10.6 into 10.8

This commit is contained in:
Marko Mäkelä
2023-03-29 15:16:42 +03:00
113 changed files with 3104 additions and 3031 deletions

View File

@@ -272,7 +272,7 @@ struct rpl_parallel_thread {
struct pool_bkp_for_pfs{
uint32 count;
bool inited;
bool inited, is_valid;
struct rpl_parallel_thread **rpl_thread_arr;
void init(uint32 thd_count)
{
@@ -299,6 +299,7 @@ struct pool_bkp_for_pfs{
my_free(rpl_thread_arr);
rpl_thread_arr= NULL;
}
inited= false;
}
};