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

Fix bug when repairing compressed MyISAM files

LOCATE() is now case sensitive
This commit is contained in:
monty@hundin.mysql.fi
2001-11-22 13:50:50 +02:00
parent c6b3afe2d7
commit 9209210d30
14 changed files with 125 additions and 55 deletions

View File

@@ -161,6 +161,7 @@ public:
bool append(const char *s,uint32 arg_length=0);
bool append(IO_CACHE* file, uint32 arg_length);
int strstr(const String &search,uint32 offset=0); // Returns offset to substring or -1
int strstr_case(const String &s,uint32 offset=0);
int strrstr(const String &search,uint32 offset=0); // Returns offset to substring or -1
bool replace(uint32 offset,uint32 arg_length,const String &to);
inline bool append(char chr)