1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-17694 Add method LEX::sp_proc_stmt_statement_finalize()

This commit is contained in:
Alexander Barkov
2018-11-14 07:38:28 +04:00
parent fde5386d16
commit 62bcd74712
5 changed files with 75 additions and 98 deletions

View File

@ -58,6 +58,12 @@ class Lex_cstring : public LEX_CSTRING
str= _str;
length= _len;
}
Lex_cstring(const char *start, const char *end)
{
DBUG_ASSERT(start <= end);
str= start;
length= end - start;
}
void set(const char *_str, size_t _len)
{
str= _str;