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:
@ -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;
|
||||
|
Reference in New Issue
Block a user