Skip to content

Commit 265b18e

Browse files
committed
include updates windows binaries
1 parent a5c443c commit 265b18e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+459
-962
lines changed
6 KB
Binary file not shown.
File renamed without changes.

windows/mariadb-client-2.0/include/dbug.h renamed to windows/libmariadbclient-2.1.0/include/dbug.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
#ifdef __cplusplus
2121
extern "C" {
2222
#endif
23+
24+
/* unsupported macros (used by async) */
25+
#define DBUG_SWAP_CODE_STATE(a) {}
26+
#define DBUG_FREE_CODE_STATE(a) {}
27+
2328
#if !defined(DBUG_OFF) && !defined(_lint)
2429

2530
struct _db_stack_frame_ {
@@ -120,7 +125,6 @@ extern const char* _db_get_func_(void);
120125
#endif
121126

122127
#else /* No debugger */
123-
124128
#define DBUG_ENTER(a1)
125129
#define DBUG_END() {}
126130
#define DBUG_RETURN(a1) return(a1)

windows/mariadb-client-2.0/include/errmsg.h renamed to windows/libmariadbclient-2.1.0/include/errmsg.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ extern const char *client_errors[]; /* Error messages */
6666
#define CR_PARAMS_NOT_BOUND 2031
6767
#define CR_INVALID_PARAMETER_NO 2034
6868
#define CR_UNSUPPORTED_PARAM_TYPE 2036
69+
#define CR_SECURE_AUTH 2049
6970
#define CR_NO_DATA 2051
7071
#define CR_NO_STMT_METADATA 2052
7172
#define CR_NOT_IMPLEMENTED 2054
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

windows/mariadb-client-2.0/include/ma_common.h renamed to windows/libmariadbclient-2.1.0/include/ma_common.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,15 @@ typedef struct st_mariadb_db_driver
3131
void *buffer;
3232
} MARIADB_DB_DRIVER;
3333

34-
struct st_mysql_options_extention {
34+
struct mysql_async_context;
35+
36+
struct st_mysql_options_extension {
3537
char *plugin_dir;
3638
char *default_auth;
3739
char *ssl_crl;
3840
char *ssl_crlpath;
3941
char *server_public_key_path;
42+
struct mysql_async_context *async_context;
4043
HASH connect_attrs;
4144
size_t connect_attrs_len;
4245
void (*report_progress)(const MYSQL *mysql,
File renamed without changes.

0 commit comments

Comments
 (0)