diff options
author | Evgeny Potemkin <epotemkin@mysql.com> | 2009-11-24 18:26:13 +0300 |
---|---|---|
committer | Evgeny Potemkin <epotemkin@mysql.com> | 2009-11-24 18:26:13 +0300 |
commit | 438b795ff7438d6bb070a67c94ca337c9a99c3c6 (patch) | |
tree | 6e715efd003d16cfc130e158eb707c3c7249c158 /sql/item_func.h | |
parent | 049dc018dab45229c21d38dd82eaff79eb433f6a (diff) | |
parent | 726e83907cea41206bb1f4333b55c26f467b90ab (diff) | |
download | mariadb-git-438b795ff7438d6bb070a67c94ca337c9a99c3c6.tar.gz |
Manual merge of the fix for bug#43668.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index 025ac12fe07..1aae0a5abb5 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -124,17 +124,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); |