summaryrefslogtreecommitdiff
path: root/sql/item_func.cc
diff options
context:
space:
mode:
authorevgen@moonbone.local <>2006-07-26 21:36:03 +0400
committerevgen@moonbone.local <>2006-07-26 21:36:03 +0400
commitb7ade8e4087b3603c0607f9afba550f7a0700190 (patch)
treec510925cd7b5c2932cfe62da64931f488b3d3236 /sql/item_func.cc
parent0a84eb5ff271d5b4d51da6459e0142a288579ec5 (diff)
downloadmariadb-git-b7ade8e4087b3603c0607f9afba550f7a0700190.tar.gz
item_func.h, item_func.cc, sql_select.cc, item.h:
Post review changes for bug#19862.
Diffstat (limited to 'sql/item_func.cc')
-rw-r--r--sql/item_func.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_func.cc b/sql/item_func.cc
index c31ac2bf047..cbab9a4de1b 100644
--- a/sql/item_func.cc
+++ b/sql/item_func.cc
@@ -399,9 +399,9 @@ Field *Item_func::tmp_table_field(TABLE *t_arg)
}
-bool Item_func::func_type_checker_processor(byte *arg)
+bool Item_func::is_expensive_processor(byte *arg)
{
- return *((Functype*)arg) == functype();
+ return is_expensive();
}