summaryrefslogtreecommitdiff
path: root/sql/item_buff.cc
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_buff.cc
parentea97ce50b97b32bb6135ad7aa6d487630bdcfa84 (diff)
downloadmariadb-git-e5f4c7a0bd35ec81928b15664dcad53d5aba56e3.tar.gz
Rename: Item::val -> Item::val_real().
Diffstat (limited to 'sql/item_buff.cc')
-rw-r--r--sql/item_buff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_buff.cc b/sql/item_buff.cc
index 1559cfe958e..66de26dba9a 100644
--- a/sql/item_buff.cc
+++ b/sql/item_buff.cc
@@ -70,7 +70,7 @@ Item_str_buff::~Item_str_buff()
bool Item_real_buff::cmp(void)
{
- double nr=item->val();
+ double nr= item->val_real();
if (null_value != item->null_value || nr != value)
{
null_value= item->null_value;