summaryrefslogtreecommitdiff
path: root/include/mysql/plugin_audit.h.pp
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2022-11-02 19:47:23 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2022-11-02 21:06:47 +0100
commit2e2173a359f95ab924e844e9af707085c22a0934 (patch)
tree619ed293f1719c09144564f52170352866aeab72 /include/mysql/plugin_audit.h.pp
parent6449af6f2d52c7acb483fcfb186c838edaf0424a (diff)
parentb798944a93e81d533b6c2947295990ef8d6cb5fc (diff)
downloadmariadb-git-2e2173a359f95ab924e844e9af707085c22a0934.tar.gz
Merge branch '10.6' into 10.7
Diffstat (limited to 'include/mysql/plugin_audit.h.pp')
-rw-r--r--include/mysql/plugin_audit.h.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mysql/plugin_audit.h.pp b/include/mysql/plugin_audit.h.pp
index fedfb5862b4..d1e9580a053 100644
--- a/include/mysql/plugin_audit.h.pp
+++ b/include/mysql/plugin_audit.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);
}