diff options
author | unknown <bar@mysql.com> | 2004-10-25 17:51:26 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-10-25 17:51:26 +0500 |
commit | 712326d6846ae718bf5c7c5961ec3173bbf29b06 (patch) | |
tree | 7a9462068baaf8b0e98b30d9e65951269bac98e5 /include | |
parent | 7df41480849074ad0b1a907d244b5d3b41403f32 (diff) | |
download | mariadb-git-712326d6846ae718bf5c7c5961ec3173bbf29b06.tar.gz |
Bug#6202: ENUMs are not case sensitive even if declared BINARY
Diffstat (limited to 'include')
-rw-r--r-- | include/typelib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/typelib.h b/include/typelib.h index 1b049d19a11..4d6a90ad51e 100644 --- a/include/typelib.h +++ b/include/typelib.h @@ -22,6 +22,7 @@ typedef struct st_typelib { /* Different types saved here */ unsigned int count; /* How many types */ const char *name; /* Name of typelib */ const char **type_names; + unsigned int *type_lengths; } TYPELIB; extern int find_type(char *x,TYPELIB *typelib,unsigned int full_name); |