summaryrefslogtreecommitdiffstats
path: root/sql/sql_plugin_services.inl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sql/sql_plugin_services.inl7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/sql_plugin_services.inl b/sql/sql_plugin_services.inl
index 5ac06e76..b291bf5c 100644
--- a/sql/sql_plugin_services.inl
+++ b/sql/sql_plugin_services.inl
@@ -18,6 +18,7 @@
#include <service_versions.h>
#include <mysql/service_wsrep.h>
#include <mysql/service_thd_mdl.h>
+#include <mysql/service_print_check_msg.h>
struct st_service_ref {
const char *name;
@@ -219,6 +220,11 @@ static struct my_print_error_service_st my_print_error_handler=
my_printv_error
};
+static struct print_check_msg_service_st print_check_msg_handler=
+{
+ print_check_msg
+};
+
static struct json_service_st json_handler=
{
json_type,
@@ -336,6 +342,7 @@ static struct st_service_ref list_of_services[]=
{ "my_crypt_service", VERSION_my_crypt, &crypt_handler},
{ "my_md5_service", VERSION_my_md5, &my_md5_handler},
{ "my_print_error_service", VERSION_my_print_error, &my_print_error_handler},
+ { "print_check_msg_service", VERSION_print_check_msg, &print_check_msg_handler},
{ "my_sha1_service", VERSION_my_sha1, &my_sha1_handler},
{ "my_sha2_service", VERSION_my_sha2, &my_sha2_handler},
{ "my_snprintf_service", VERSION_my_snprintf, &my_snprintf_handler },