summaryrefslogtreecommitdiff
path: root/sql/repl_failsafe.cc
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2004-10-25 17:51:26 +0500
committerunknown <bar@mysql.com>2004-10-25 17:51:26 +0500
commit712326d6846ae718bf5c7c5961ec3173bbf29b06 (patch)
tree7a9462068baaf8b0e98b30d9e65951269bac98e5 /sql/repl_failsafe.cc
parent7df41480849074ad0b1a907d244b5d3b41403f32 (diff)
downloadmariadb-git-712326d6846ae718bf5c7c5961ec3173bbf29b06.tar.gz
Bug#6202: ENUMs are not case sensitive even if declared BINARY
Diffstat (limited to 'sql/repl_failsafe.cc')
-rw-r--r--sql/repl_failsafe.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/repl_failsafe.cc b/sql/repl_failsafe.cc
index 66c6e7c508d..83fceca80ef 100644
--- a/sql/repl_failsafe.cc
+++ b/sql/repl_failsafe.cc
@@ -35,7 +35,7 @@ HASH slave_list;
const char *rpl_role_type[] = {"MASTER","SLAVE",NullS};
TYPELIB rpl_role_typelib = {array_elements(rpl_role_type)-1,"",
- rpl_role_type};
+ rpl_role_type, NULL};
const char* rpl_status_type[]=
{
@@ -43,7 +43,7 @@ const char* rpl_status_type[]=
"RECOVERY_CAPTAIN","NULL",NullS
};
TYPELIB rpl_status_typelib= {array_elements(rpl_status_type)-1,"",
- rpl_status_type};
+ rpl_status_type, NULL};
static Slave_log_event* find_slave_event(IO_CACHE* log,