diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2020-08-11 12:11:07 +0000 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2020-08-11 12:11:07 +0000 |
commit | 2f6492c21fb1816a6a40fb9004fb89b7f17adb3f (patch) | |
tree | 3e8c4ef831d68d9144be54348559c3ff7728c374 /tests/mysql_client_fw.c | |
parent | 09be96ff08bba1f2dd7ca72f2b28925623be6e79 (diff) | |
download | mariadb-git-bb-10.6-MDEV-23238.tar.gz |
MDEV-23238 - remove async client from server code.bb-10.6-MDEV-23238
It is already in libmariadb, and server (also that client in server)
does not need it.
It does not work in embedded either since it relies on non-blocking sockets
Diffstat (limited to 'tests/mysql_client_fw.c')
-rw-r--r-- | tests/mysql_client_fw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/mysql_client_fw.c b/tests/mysql_client_fw.c index aea0562672c..bcf62eb0e18 100644 --- a/tests/mysql_client_fw.c +++ b/tests/mysql_client_fw.c @@ -31,9 +31,8 @@ and use poll()/select() to wait for them to complete. This way we can get a good coverage testing of the non-blocking API as well. */ -#include <my_context.h> static my_bool non_blocking_api_enabled= 0; -#if !defined(EMBEDDED_LIBRARY) && !defined(MY_CONTEXT_DISABLE) +#if !defined(EMBEDDED_LIBRARY) #define WRAP_NONBLOCK_ENABLED non_blocking_api_enabled #include "nonblock-wrappers.h" #endif |