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

Moving implementation of INET_ATON() INET_NTOA() into

separate files item_inetfunc.h and item_inetfunc.cc.
This commit is contained in:
Alexander Barkov
2014-05-30 15:24:25 +04:00
parent 69742e4ee3
commit 1449d1d54f
9 changed files with 186 additions and 123 deletions

View File

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