1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge 10.0-base -> 10.0

This commit is contained in:
Alexander Barkov
2013-10-15 10:26:08 +04:00
392 changed files with 192469 additions and 7642 deletions

View File

@ -164,6 +164,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)
{