diff options
author | Lawrin Novitsky <lawrin.novitsky@mariadb.com> | 2022-09-13 16:18:29 +0200 |
---|---|---|
committer | Lawrin Novitsky <lawrin.novitsky@mariadb.com> | 2022-09-13 16:18:29 +0200 |
commit | a684049512939251010d4c66d6a718089bb53e1c (patch) | |
tree | 8862f62e6b8934ea09a85a34086327a025326b01 /include/mysql/plugin_auth.h.pp | |
parent | 313343513405a4ecc11b0a0e413de29fb8e6210a (diff) | |
download | mariadb-git-10.7-mdev-29514.tar.gz |
MDEV-29514 Extending plugins sql service with mysql_options,10.7-mdev-29514
mysql_fetch_lenghts, mysql_set_character_set, mysql_num_fields and
mysql_select_db.
sql service version has been changed to 0x0101
ABI files updated.
Diffstat (limited to 'include/mysql/plugin_auth.h.pp')
-rw-r--r-- | include/mysql/plugin_auth.h.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mysql/plugin_auth.h.pp b/include/mysql/plugin_auth.h.pp index f4adae35ffd..2c89bc47de3 100644 --- a/include/mysql/plugin_auth.h.pp +++ b/include/mysql/plugin_auth.h.pp @@ -481,6 +481,12 @@ extern struct sql_service_st { void (STDCALL *mysql_free_result_func)(MYSQL_RES *result); MYSQL_ROW (STDCALL *mysql_fetch_row_func)(MYSQL_RES *result); void (STDCALL *mysql_close_func)(MYSQL *mysql); + int (STDCALL *mysql_options_func)(MYSQL *mysql, enum mysql_option option, + const void *arg); + unsigned long *(STDCALL *mysql_fetch_lengths_func)(MYSQL_RES *res); + int (STDCALL *mysql_set_character_set_func)(MYSQL *mysql, const char *cs_name); + unsigned int (STDCALL *mysql_num_fields_func)(MYSQL_RES *res); + int (STDCALL *mysql_select_db_func)(MYSQL *mysql, const char *db); } *sql_service; MYSQL *mysql_real_connect_local(MYSQL *mysql); } |