summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authormsvensson@pilot.mysql.com <>2007-01-29 14:33:53 +0100
committermsvensson@pilot.mysql.com <>2007-01-29 14:33:53 +0100
commit007d170ad2af225225844ac258c91b6766fb0a69 (patch)
tree5ff0b0c41c572069a02dbb2c6eabec3d10d8900d /sql-common
parenta079f20aa80b56c5821d8b43bb102b8ca37dfbad (diff)
parent7eaa82ea38e1a9f0598ecfc88439583b51567e64 (diff)
downloadmariadb-git-007d170ad2af225225844ac258c91b6766fb0a69.tar.gz
Merge pilot.mysql.com:/home/msvensson/mysql/bug22943/my41-bug22943
into pilot.mysql.com:/home/msvensson/mysql/bug22943/my50-bug22943
Diffstat (limited to 'sql-common')
-rw-r--r--sql-common/client.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c
index bcba50548ca..a627619550a 100644
--- a/sql-common/client.c
+++ b/sql-common/client.c
@@ -2044,11 +2044,17 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user,
goto error;
}
vio_keepalive(net->vio,TRUE);
- /* Override local client variables */
+
+ /* If user set read_timeout, let it override the default */
if (mysql->options.read_timeout)
net->read_timeout= mysql->options.read_timeout;
+ vio_timeout(net->vio, 0, net->read_timeout);
+
+ /* If user set write_timeout, let it override the default */
if (mysql->options.write_timeout)
net->write_timeout= mysql->options.write_timeout;
+ vio_timeout(net->vio, 1, net->write_timeout);
+
if (mysql->options.max_allowed_packet)
net->max_packet_size= mysql->options.max_allowed_packet;