summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h95
1 files changed, 0 insertions, 95 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index e1d6156c12c..8ef2b85de52 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -1037,101 +1037,6 @@ public:
};
-class Item_func_dimension :public Item_int_func
-{
- String value;
-public:
- Item_func_dimension(Item *a) :Item_int_func(a) {}
- longlong val_int();
- const char *func_name() const { return "dimension"; }
- void fix_length_and_dec() { max_length=10; }
-};
-
-
-class Item_func_x :public Item_real_func
-{
- String value;
-public:
- Item_func_x(Item *a) :Item_real_func(a) {}
- double val();
- const char *func_name() const { return "x"; }
-};
-
-
-class Item_func_y :public Item_real_func
-{
- String value;
-public:
- Item_func_y(Item *a) :Item_real_func(a) {}
- double val();
- const char *func_name() const { return "y"; }
-};
-
-
-class Item_func_numgeometries :public Item_int_func
-{
- String value;
-public:
- Item_func_numgeometries(Item *a) :Item_int_func(a) {}
- longlong val_int();
- const char *func_name() const { return "numgeometries"; }
- void fix_length_and_dec() { max_length=10; }
-};
-
-
-class Item_func_numinteriorring :public Item_int_func
-{
- String value;
-public:
- Item_func_numinteriorring(Item *a) :Item_int_func(a) {}
- longlong val_int();
- const char *func_name() const { return "numinteriorring"; }
- void fix_length_and_dec() { max_length=10; }
-};
-
-
-class Item_func_numpoints :public Item_int_func
-{
- String value;
-public:
- Item_func_numpoints(Item *a) :Item_int_func(a) {}
- longlong val_int();
- const char *func_name() const { return "numpoints"; }
- void fix_length_and_dec() { max_length=10; }
-};
-
-
-class Item_func_area :public Item_real_func
-{
- String value;
-public:
- Item_func_area(Item *a) :Item_real_func(a) {}
- double val();
- const char *func_name() const { return "area"; }
-};
-
-
-class Item_func_glength :public Item_real_func
-{
- String value;
-public:
- Item_func_glength(Item *a) :Item_real_func(a) {}
- double val();
- const char *func_name() const { return "glength"; }
-};
-
-
-class Item_func_srid: public Item_int_func
-{
- String value;
-public:
- Item_func_srid(Item *a): Item_int_func(a) {}
- longlong val_int();
- const char *func_name() const { return "srid"; }
- void fix_length_and_dec() { max_length= 10; }
-};
-
-
class Item_func_match_nl :public Item_func_match
{
public: