1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge 10.6 into 10.7

This commit is contained in:
Marko Mäkelä
2021-08-31 15:07:39 +03:00
201 changed files with 4243 additions and 4063 deletions

View File

@ -5017,13 +5017,9 @@ void reset_thd(MYSQL_THD thd)
guarantees, in other words, server can't send OK packet
before modified data is durable in redo log.
*/
extern "C" MYSQL_THD thd_increment_pending_ops(void)
extern "C" void thd_increment_pending_ops(MYSQL_THD thd)
{
THD *thd = current_thd;
if (!thd)
return NULL;
thd->async_state.inc_pending_ops();
return thd;
}
/**