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

MDEV-10559: main.mysql_client_test_nonblock crashes in buildbot on 10.0

fix for async operations
This commit is contained in:
Oleksandr Byelkin
2016-08-16 21:23:57 +02:00
parent df09d5e724
commit 05f61ba460
3 changed files with 10 additions and 5 deletions

View File

@ -455,7 +455,11 @@ MK_ASYNC_START_BODY(
parms.db= db;
parms.port= port;
parms.unix_socket= unix_socket;
parms.client_flags= client_flags;
/*
async wrapper enforce the CLIENT_REMEMBER_OPTIONS flag to be
functional (otherwise it can't operate)
*/
parms.client_flags= client_flags | CLIENT_REMEMBER_OPTIONS;
},
NULL,
r_ptr,