You've already forked mariadb-connector-c
mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-08-07 02:42:49 +03:00
Since we can't determine if load data local is
suppoerted by Xpand, we skip it for now.
This commit is contained in:
@@ -102,13 +102,14 @@ if (IS_MAXSCALE()) \
|
||||
#define SKIP_XPAND \
|
||||
if (IS_XPAND()) \
|
||||
{ \
|
||||
diag("test disabled with xpand"); \
|
||||
diag("test disabled with Xpand"); \
|
||||
return SKIP; \
|
||||
}
|
||||
|
||||
#define SKIP_LOAD_INFILE_DISABLE \
|
||||
if (!((mysql->server_capabilities & CLIENT_LOCAL_FILES) && \
|
||||
(mysql->options.client_flag & CLIENT_LOCAL_FILES))) { \
|
||||
(mysql->options.client_flag & CLIENT_LOCAL_FILES)) || \
|
||||
IS_XPAND()) { \
|
||||
diag("Load local infile not supported"); \
|
||||
return SKIP; \
|
||||
}
|
||||
|
Reference in New Issue
Block a user