Commit 7e10e80b authored by Sergei Golubchik's avatar Sergei Golubchik

correct dbug function names

parent 83b0468c
......@@ -368,7 +368,7 @@ class Item_func_regexp_replace :public Item_str_func
{}
void cleanup()
{
DBUG_ENTER("Item_func_regex::cleanup");
DBUG_ENTER("Item_func_regexp_replace::cleanup");
Item_str_func::cleanup();
re.cleanup();
DBUG_VOID_RETURN;
......@@ -389,7 +389,7 @@ class Item_func_regexp_substr :public Item_str_func
{}
void cleanup()
{
DBUG_ENTER("Item_func_regex::cleanup");
DBUG_ENTER("Item_func_regexp_substr::cleanup");
Item_str_func::cleanup();
re.cleanup();
DBUG_VOID_RETURN;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment