summaryrefslogtreecommitdiff
path: root/sql/item_inetfunc.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '10.2-mdev9197-cons' of github.com:shagalla/serverIgor Babaev2016-08-311-0/+16
|\ | | | | | | into branch 10.2-mdev9197.
| * The consolidated patch for mdev-9197.Galina Shalygina2016-08-231-0/+16
| |
* | parentheses in defaultAlexander Barkov2016-06-301-0/+1
|/ | | | | | | | - Adding SHOW CREATE TABLE into all DEFAULT tests, to cover need_parentheses_in_default() for all items - Fixing a few items not to print parentheses in DEFAULT: spatial function-alike predicates, IS_IPV4 and IS_IPV6 functions, COLUMN_CHECK() and COLUMN_EXISTS().
* MDEV-8010 - Avoid sql_alloc() in Items (Patch #1)Sergey Vojtovich2015-08-211-19/+18
| | | | | | | Added mandatory thd parameter to Item (and all derivative classes) constructor. Added thd parameter to all routines that may create items. Also removed "current_thd" from Item::Item. This reduced number of pthread_getspecific() calls from 290 to 177 per OLTP RO transaction.
* MDEV-4051 INET6_ATON() and INET6_NTOA()Alexander Barkov2014-05-301-8/+195
| | | | | | | | | | | | Backporting functions from MySQL-5.6: - INET6_ATON() - INET6_NTOA() - IS_IPV4() - IS_IPV4_COMPAT() - IS_IPV4_MAPPED() - IS_IPV6()
* Moving implementation of INET_ATON() INET_NTOA() intoAlexander Barkov2014-05-301-0/+57
separate files item_inetfunc.h and item_inetfunc.cc.