Skip to content
Permalink
Browse files
correct dbug function names
  • Loading branch information
vuvova committed Dec 21, 2019
1 parent 83b0468 commit 7e10e80
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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;

0 comments on commit 7e10e80

Please sign in to comment.