diff options
author | Alexander Barkov <bar@mariadb.org> | 2014-05-30 15:24:25 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2014-05-30 15:24:25 +0400 |
commit | 1449d1d54fc4ea876e54bded79c29b51eb6be91d (patch) | |
tree | e97bb47ae32df64ab5efc6764a561a9bcf6aab14 /sql/item_func.h | |
parent | 69742e4ee3e019c20dc2432d69e92fd6b76d2193 (diff) | |
download | mariadb-git-1449d1d54fc4ea876e54bded79c29b51eb6be91d.tar.gz |
Moving implementation of INET_ATON() INET_NTOA() into
separate files item_inetfunc.h and item_inetfunc.cc.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index 69abecc5f39..1696898812d 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -1871,16 +1871,6 @@ public: }; -class Item_func_inet_aton : public Item_int_func -{ -public: - Item_func_inet_aton(Item *a) :Item_int_func(a) {} - longlong val_int(); - const char *func_name() const { return "inet_aton"; } - void fix_length_and_dec() { decimals= 0; max_length= 21; maybe_null= 1; unsigned_flag= 1;} -}; - - /* for fulltext search */ class Item_func_match :public Item_real_func |