mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@ -100,8 +100,7 @@ struct TP_connection
|
||||
priority(TP_PRIORITY_HIGH)
|
||||
{}
|
||||
|
||||
virtual ~TP_connection()
|
||||
{};
|
||||
virtual ~TP_connection() = default;
|
||||
|
||||
/* Initialize io structures windows threadpool, epoll etc */
|
||||
virtual int init() = 0;
|
||||
@ -119,7 +118,7 @@ struct TP_connection
|
||||
|
||||
struct TP_pool
|
||||
{
|
||||
virtual ~TP_pool(){};
|
||||
virtual ~TP_pool() = default;
|
||||
virtual int init()= 0;
|
||||
virtual TP_connection *new_connection(CONNECT *)= 0;
|
||||
virtual void add(TP_connection *c)= 0;
|
||||
|
Reference in New Issue
Block a user