summaryrefslogtreecommitdiff
path: root/sql/item_geofunc.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_geofunc.h
parentea97ce50b97b32bb6135ad7aa6d487630bdcfa84 (diff)
downloadmariadb-git-e5f4c7a0bd35ec81928b15664dcad53d5aba56e3.tar.gz
Rename: Item::val -> Item::val_real().
Diffstat (limited to 'sql/item_geofunc.h')
-rw-r--r--sql/item_geofunc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_geofunc.h b/sql/item_geofunc.h
index 79e4f804a04..e19036cc982 100644
--- a/sql/item_geofunc.h
+++ b/sql/item_geofunc.h
@@ -263,7 +263,7 @@ class Item_func_x: public Item_real_func
String value;
public:
Item_func_x(Item *a): Item_real_func(a) {}
- double val();
+ double val_real();
const char *func_name() const { return "x"; }
};
@@ -273,7 +273,7 @@ class Item_func_y: public Item_real_func
String value;
public:
Item_func_y(Item *a): Item_real_func(a) {}
- double val();
+ double val_real();
const char *func_name() const { return "y"; }
};
@@ -316,7 +316,7 @@ class Item_func_area: public Item_real_func
String value;
public:
Item_func_area(Item *a): Item_real_func(a) {}
- double val();
+ double val_real();
const char *func_name() const { return "area"; }
};
@@ -326,7 +326,7 @@ class Item_func_glength: public Item_real_func
String value;
public:
Item_func_glength(Item *a): Item_real_func(a) {}
- double val();
+ double val_real();
const char *func_name() const { return "glength"; }
};