summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
authorVladislav Vaintroub <vvaintroub@mysql.com>2009-12-16 15:34:11 +0100
committerVladislav Vaintroub <vvaintroub@mysql.com>2009-12-16 15:34:11 +0100
commit07bfd2617db894f9a6a4ad5998941d3517974bb7 (patch)
tree6ef380be281adedf087a0aeebda5286409211a25 /sql/item_func.h
parent04d1596d643cc4789c63c0c4f4598fe04564f65f (diff)
parent5cd3dffebb2abd5778e819ac57001e0d963484d8 (diff)
downloadmariadb-git-07bfd2617db894f9a6a4ad5998941d3517974bb7.tar.gz
merge
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 6f2b3f0bfc2..f22bc0c301c 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -127,17 +127,6 @@ public:
virtual optimize_type select_optimize() const { return OPTIMIZE_NONE; }
virtual bool have_rev_func() const { return 0; }
virtual Item *key_item() const { return args[0]; }
- /*
- This method is used for debug purposes to print the name of an
- item to the debug log. The second use of this method is as
- a helper function of print(), where it is applicable.
- To suit both goals it should return a meaningful,
- distinguishable and sintactically correct string. This method
- should not be used for runtime type identification, use enum
- {Sum}Functype and Item_func::functype()/Item_sum::sum_func()
- instead.
- */
- virtual const char *func_name() const= 0;
virtual bool const_item() const { return const_item_cache; }
inline Item **arguments() const { return args; }
void set_arguments(List<Item> &list);