summaryrefslogtreecommitdiff
path: root/sql/sql_base.cc
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2022-04-28 16:59:50 +0200
committerSergei Golubchik <serg@mariadb.org>2022-04-29 17:05:12 +0200
commitbc9102eb811cc39a76b04cab316bbdcceaa16026 (patch)
treea11025c053676d82bbd869cf7177d105f1d23589 /sql/sql_base.cc
parent7215b0035435c15362bd94d169943eaad851d7dc (diff)
downloadmariadb-git-bc9102eb811cc39a76b04cab316bbdcceaa16026.tar.gz
cleanup: (*order->item) -> item
and minor style fixes
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r--sql/sql_base.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc
index 3ca18bd007d..14b97b43660 100644
--- a/sql/sql_base.cc
+++ b/sql/sql_base.cc
@@ -8453,7 +8453,7 @@ int setup_conds(THD *thd, TABLE_LIST *tables, List<TABLE_LIST> &leaves,
select_lex->where= *conds;
}
thd->lex->current_select->is_item_list_lookup= save_is_item_list_lookup;
- DBUG_RETURN(MY_TEST(thd->is_error()));
+ DBUG_RETURN(thd->is_error());
err_no_arena:
select_lex->is_item_list_lookup= save_is_item_list_lookup;