diff options
author | unknown <serg@serg.mylan> | 2006-02-14 22:51:16 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2006-02-14 22:51:16 +0100 |
commit | 53031dae8515e735093fd602ed10615bff1c03e7 (patch) | |
tree | 40a27ca568bbc5925232d88ad990b3d9414174a2 /include | |
parent | 8017e9c4e726f8ab6b8b2c71f81e0e0036c21fcd (diff) | |
download | mariadb-git-53031dae8515e735093fd602ed10615bff1c03e7.tar.gz |
my_bool is internal type, so should be SHOW_MY_BOOL
Diffstat (limited to 'include')
-rw-r--r-- | include/plugin.h | 2 |
1 files changed, 1 insertions, 1 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 }; |