summaryrefslogtreecommitdiff
path: root/sql/item_geofunc.h
diff options
context:
space:
mode:
authorAlexey Botchkov <holyfoot@askmonty.org>2015-06-23 15:06:23 +0500
committerAlexey Botchkov <holyfoot@askmonty.org>2015-06-23 15:06:23 +0500
commitd43df4a33ae38d29ca7a471c98368b2ab562b50e (patch)
tree1683a4fd0d1c9d49fc3aef760111e5a060334ff5 /sql/item_geofunc.h
parentb7ff2f1b59c42171ff50fc682e8f723f0713d688 (diff)
downloadmariadb-git-d43df4a33ae38d29ca7a471c98368b2ab562b50e.tar.gz
These functions can never return NULL.
Diffstat (limited to 'sql/item_geofunc.h')
-rw-r--r--sql/item_geofunc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/item_geofunc.h b/sql/item_geofunc.h
index 17556c9dec9..52713995c4f 100644
--- a/sql/item_geofunc.h
+++ b/sql/item_geofunc.h
@@ -425,7 +425,6 @@ public:
Item_func_issimple(Item *a): Item_bool_func(a) {}
longlong val_int();
const char *func_name() const { return "st_issimple"; }
- void fix_length_and_dec() { maybe_null= 1; }
};
class Item_func_isclosed: public Item_bool_func
@@ -434,7 +433,6 @@ public:
Item_func_isclosed(Item *a): Item_bool_func(a) {}
longlong val_int();
const char *func_name() const { return "st_isclosed"; }
- void fix_length_and_dec() { maybe_null= 1; }
};
class Item_func_isring: public Item_func_issimple