From fd5b16374c34d7487419a85b5d02f4edb82c07dc Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Nov 2002 17:25:34 +0400 Subject: wild_case_compate(&String, &String, escape) doesn't exist anymor --- sql/sql_string.cc | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'sql/sql_string.cc') diff --git a/sql/sql_string.cc b/sql/sql_string.cc index e43ff1b3215..5083fb13105 100644 --- a/sql/sql_string.cc +++ b/sql/sql_string.cc @@ -673,26 +673,3 @@ String *copy_if_not_alloced(String *to,String *from,uint32 from_length) -int wild_case_compare(String &match,String &wild, char escape) -{ - DBUG_ENTER("wild_case_compare"); - DBUG_PRINT("enter",("match='%s', wild='%s', escape='%c'" - ,match.ptr(),wild.ptr(),escape)); - DBUG_RETURN(my_wildcmp(match.str_charset,match.ptr(),match.ptr()+match.length(), - wild.ptr(), wild.ptr()+wild.length(), - escape,wild_one,wild_many)); -} - - - -int wild_compare(String &match,String &wild, char escape) -{ - DBUG_ENTER("wild_compare"); - DBUG_PRINT("enter",("match='%s', wild='%s', escape='%c'" - ,match.ptr(),wild.ptr(),escape)); - DBUG_RETURN(my_wildcmp(my_charset_bin,match.ptr(),match.ptr()+match.length(), - wild.ptr(), wild.ptr()+wild.length(), - escape,wild_one,wild_many)); -} - - -- cgit v1.2.1