summaryrefslogtreecommitdiff
path: root/sql/item_strfunc.h
diff options
context:
space:
mode:
authorkonstantin@mysql.com <>2004-11-11 21:39:35 +0300
committerkonstantin@mysql.com <>2004-11-11 21:39:35 +0300
commite5f4c7a0bd35ec81928b15664dcad53d5aba56e3 (patch)
treed65c1d25b2742712e5c398191b3e7eb40d0692e6 /sql/item_strfunc.h
parentea97ce50b97b32bb6135ad7aa6d487630bdcfa84 (diff)
downloadmariadb-git-e5f4c7a0bd35ec81928b15664dcad53d5aba56e3.tar.gz
Rename: Item::val -> Item::val_real().
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r--sql/item_strfunc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h
index afc4b9da0a1..647cf022d79 100644
--- a/sql/item_strfunc.h
+++ b/sql/item_strfunc.h
@@ -32,7 +32,7 @@ public:
Item_str_func(Item *a,Item *b,Item *c,Item *d, Item* e) :Item_func(a,b,c,d,e) {decimals=NOT_FIXED_DEC; }
Item_str_func(List<Item> &list) :Item_func(list) {decimals=NOT_FIXED_DEC; }
longlong val_int();
- double val();
+ double val_real();
enum Item_result result_type () const { return STRING_RESULT; }
void left_right_max_length();
};
@@ -377,7 +377,7 @@ class Item_func_elt :public Item_str_func
{
public:
Item_func_elt(List<Item> &list) :Item_str_func(list) {}
- double val();
+ double val_real();
longlong val_int();
String *val_str(String *str);
void fix_length_and_dec();