1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-16 11:21:15 +03:00

Fixed that LOAD DATA INFILE works with transactions.

Fix for lower case filenames
This commit is contained in:
monty@hundin.mysql.fi
2001-08-28 06:43:55 +03:00
parent b0a0c54257
commit 788bc3f43b
9 changed files with 74 additions and 4032 deletions

View File

@ -542,8 +542,8 @@ String *copy_if_not_alloced(String *to,String *from,uint32 from_length)
#endif
int wild_case_compare(const char *str,const char *str_end,
const char *wildstr,const char *wildend,
char escape)
const char *wildstr,const char *wildend,
char escape)
{
int result= -1; // Not found, using wildcards
#ifdef USE_MB
@ -677,7 +677,7 @@ int wild_case_compare(String &match,String &wild, char escape)
*/
int wild_compare(const char *str,const char *str_end,
const char *wildstr,const char *wildend,char escape)
const char *wildstr,const char *wildend,char escape)
{
int result= -1; // Not found, using wildcards
while (wildstr != wildend)