From 53031dae8515e735093fd602ed10615bff1c03e7 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 14 Feb 2006 22:51:16 +0100 Subject: [PATCH] my_bool is internal type, so should be SHOW_MY_BOOL --- include/plugin.h | 2 +- sql/sql_plugin.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/plugin.h b/include/plugin.h index 06eb0e91366..a7b3606061f 100644 --- a/include/plugin.h +++ b/include/plugin.h @@ -48,7 +48,7 @@ struct st_mysql_plugin _mysql_plugin_declarations_[]= { */ enum enum_mysql_show_type { - SHOW_UNDEF, SHOW_BOOL, SHOW_MY_BOOL, SHOW_INT, SHOW_LONG, + SHOW_UNDEF, SHOW_BOOL, SHOW_INT, SHOW_LONG, SHOW_LONGLONG, SHOW_CHAR, SHOW_CHAR_PTR, SHOW_ARRAY, SHOW_FUNC }; diff --git a/sql/sql_plugin.h b/sql/sql_plugin.h index ce06334ffd7..57808ff66d6 100644 --- a/sql/sql_plugin.h +++ b/sql/sql_plugin.h @@ -23,7 +23,7 @@ */ #define SHOW_FUNC SHOW_FUNC, SHOW_KEY_CACHE_LONG, SHOW_KEY_CACHE_LONGLONG, \ SHOW_LONG_STATUS, SHOW_DOUBLE_STATUS, SHOW_HAVE, \ - SHOW_HA_ROWS, SHOW_SYS, SHOW_LONG_NOFLUSH + SHOW_MY_BOOL, SHOW_HA_ROWS, SHOW_SYS, SHOW_LONG_NOFLUSH #include #undef SHOW_FUNC typedef enum enum_mysql_show_type SHOW_TYPE;