diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2015-06-23 15:06:23 +0500 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2015-06-23 15:06:23 +0500 |
commit | d43df4a33ae38d29ca7a471c98368b2ab562b50e (patch) | |
tree | 1683a4fd0d1c9d49fc3aef760111e5a060334ff5 /sql/item_geofunc.h | |
parent | b7ff2f1b59c42171ff50fc682e8f723f0713d688 (diff) | |
download | mariadb-git-d43df4a33ae38d29ca7a471c98368b2ab562b50e.tar.gz |
These functions can never return NULL.
Diffstat (limited to 'sql/item_geofunc.h')
-rw-r--r-- | sql/item_geofunc.h | 2 |
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 |