diff options
author | bar@mysql.com <> | 2004-10-25 17:51:26 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2004-10-25 17:51:26 +0500 |
commit | 217d83a69fca9baec8f164dcfba170a0c1f87fae (patch) | |
tree | 7a9462068baaf8b0e98b30d9e65951269bac98e5 /sql/sql_show.cc | |
parent | e4be287771a616f2988c17ea2b3910be7ff01aea (diff) | |
download | mariadb-git-217d83a69fca9baec8f164dcfba170a0c1f87fae.tar.gz |
Bug#6202: ENUMs are not case sensitive even if declared BINARY
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index e030db2caf7..3bf11c0d6b8 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -34,7 +34,7 @@ static const char *grant_names[]={ #ifndef NO_EMBEDDED_ACCESS_CHECKS static TYPELIB grant_types = { sizeof(grant_names)/sizeof(char **), "grant_types", - grant_names}; + grant_names, NULL}; #endif static int |