diff options
Diffstat (limited to 'include/mysql/plugin_function.h.pp')
-rw-r--r-- | include/mysql/plugin_function.h.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mysql/plugin_function.h.pp b/include/mysql/plugin_function.h.pp index 0f915c8413f..de053261bb5 100644 --- a/include/mysql/plugin_function.h.pp +++ b/include/mysql/plugin_function.h.pp @@ -464,6 +464,14 @@ int json_escape_string(const char *str,const char *str_end, int json_unescape_json(const char *json_str, const char *json_end, char *res, char *res_end); } +extern "C" { +extern struct encryption_rotation_service_st { + int (*encrypt_set_no_rotate_ptr)(void); + int (*encrypt_get_no_rotate_ptr)(void); +} *encryption_rotation_service; +int encryption_set_no_rotation(void); +int encryption_get_no_rotation(void); +} } struct st_mysql_xid { long formatID; |