mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Next part of merge. See TODO for details
This commit is contained in:
@@ -1361,7 +1361,7 @@ static int change_group(connection_t *c,
|
||||
thread_group_t *new_group)
|
||||
{
|
||||
int ret= 0;
|
||||
int fd = c->thd->net.vio->sd;
|
||||
int fd= mysql_socket_getfd(c->thd->net.vio->mysql_socket);
|
||||
|
||||
DBUG_ASSERT(c->thread_group == old_group);
|
||||
|
||||
@@ -1389,7 +1389,7 @@ static int change_group(connection_t *c,
|
||||
|
||||
static int start_io(connection_t *connection)
|
||||
{
|
||||
int fd = connection->thd->net.vio->sd;
|
||||
int fd = mysql_socket_getfd(connection->thd->net.vio->mysql_socket);
|
||||
|
||||
/*
|
||||
Usually, connection will stay in the same group for the entire
|
||||
|
||||
Reference in New Issue
Block a user