diff options
author | Alexander Barkov <bar@mariadb.org> | 2015-05-27 21:41:02 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2015-05-27 21:41:02 +0400 |
commit | ab5094beabb9cde484fdfa442965c79e44167e38 (patch) | |
tree | d55b11673030499f0cb460c91ce0739269bef16d /sql/opt_range.cc | |
parent | 5991efc38222b53a66c64587f71c2941288011ac (diff) | |
download | mariadb-git-ab5094beabb9cde484fdfa442965c79e44167e38.tar.gz |
Fixing typos in DBUG_ENTER() comments.
Diffstat (limited to 'sql/opt_range.cc')
-rw-r--r-- | sql/opt_range.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/opt_range.cc b/sql/opt_range.cc index 383ef8c591a..190cd450240 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -8102,7 +8102,7 @@ SEL_TREE *Item::get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) SEL_TREE * Item_func_between::get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) { - DBUG_ENTER("Item::get_mm_tree"); + DBUG_ENTER("Item_func_between::get_mm_tree"); if (const_item()) DBUG_RETURN(get_mm_tree_for_const(param, this)); @@ -8202,7 +8202,7 @@ SEL_TREE *Item_equal::get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) SEL_TREE *Item_func::get_mm_tree(RANGE_OPT_PARAM *param, Item **cond_ptr) { - DBUG_ENTER("Item::get_mm_tree"); + DBUG_ENTER("Item_func::get_mm_tree"); if (const_item()) DBUG_RETURN(get_mm_tree_for_const(param, this)); |