diff options
author | bar@bar.mysql.r18.ru <> | 2002-11-14 16:47:48 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2002-11-14 16:47:48 +0400 |
commit | 76ed2fc40a16441fec494f442576f222e9cf9b01 (patch) | |
tree | 34119c6e92a1b4d0021b5eaf75661114612fd3a8 /sql/slave.cc | |
parent | 237e2ca00188b400c8dfaf8b754add7d2cae8e36 (diff) | |
download | mariadb-git-76ed2fc40a16441fec494f442576f222e9cf9b01.tar.gz |
removed unused function
some bug fixes
Diffstat (limited to 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index a07fd7ac7d1..a9c1b15a982 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -638,9 +638,10 @@ static TABLE_RULE_ENT* find_wild(DYNAMIC_ARRAY *a, const char* key, int len) { TABLE_RULE_ENT* e ; get_dynamic(a, (gptr)&e, i); - if (!wild_case_compare(system_charset_info, key, key_end, + if (!my_wildcmp(system_charset_info, key, key_end, (const char*)e->db, - (const char*)(e->db + e->key_len),'\\')) + (const char*)(e->db + e->key_len), + '\\',wild_one,wild_many)) return e; } |