mirror of
https://github.com/MariaDB/server.git
synced 2025-07-05 12:42:17 +03:00
Bug#26664 test suite times out on OS X 64bit
- The "mysql client in mysqld"(which is used by replication and federated) should use alarms instead of setting socket timeout value if the rest of the server uses alarm. By always calling 'my_net_set_write_timeout' or 'my_net_set_read_timeout' when changing the timeout value(s), the selection whether to use alarms or timeouts will be handled by ifdef's in those two functions. - Move declaration of 'vio_timeout' into "vio_priv.h"
This commit is contained in:
@ -112,8 +112,8 @@ C_MODE_START
|
||||
void my_net_local_init(NET *net)
|
||||
{
|
||||
net->max_packet= net_buffer_length;
|
||||
net->read_timeout= net_read_timeout;
|
||||
net->write_timeout= net_write_timeout;
|
||||
my_net_set_read_timeout(net, (uint)net_read_timeout);
|
||||
my_net_set_write_timeout(net, (uint)net_write_timeout);
|
||||
net->retry_count= net_retry_count;
|
||||
net->max_packet_size= max_allowed_packet;
|
||||
}
|
||||
|
Reference in New Issue
Block a user