1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

These functions can never return NULL.

This commit is contained in:
Alexey Botchkov
2015-06-23 15:06:23 +05:00
parent b7ff2f1b59
commit d43df4a33a

View File

@@ -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