1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-4425 REGEXP enhancements

This commit is contained in:
Alexander Barkov
2013-09-26 18:02:17 +04:00
parent 9d83468e78
commit 285e7aa179
371 changed files with 193126 additions and 7719 deletions

View File

@ -160,6 +160,11 @@ public:
LEX_STRING lex_string = { (char*) ptr(), length() };
return lex_string;
}
LEX_CSTRING lex_cstring() const
{
LEX_CSTRING lex_cstring = { ptr(), length() };
return lex_cstring;
}
void set(String &str,uint32 offset,uint32 arg_length)
{