WL#8699: Bit-wise operations on binary data types

Affects: Server-8.0   —   Status: Complete

WHAT
====

Existing bit-wise operations: & | ^ ~ << >> BIT_COUNT BIT_AND BIT_XOR BIT_OR
currently take BIGINT (64-bit integer) arguments and return BIGINT. So
they are limited to 64 bits.
Task is to extend them to also work on 
binary([VAR]BINARY/[TINY|MEDIUM|LONG]BLOB) arguments of any length for ( & | ^ ~ 
<< >> BIT_COUNT) and limited to 511 bytes ([VAR]BINARY/TINYBLOB)for the 
aggregate functions BIT_AND BIT_XOR BIT_OR.

Need some background?
- Bit operators and functions & | ^ ~ << >> BIT_COUNT :
  https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html#operator_bitwise-
and
- Aggregate bit functions BIT_AND BIT_XOR BIT_OR:
  http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html

WHERE
=====

Scope of WL#8699 is Server 8.0.
Some warnings, and only that, were added to Server 5.7 (WL#9015) and will be 
removed by this WL.

WHY
===

Two reasons: UUID and IPv6.

A very important customer repeatedly expressed the need to manipulate
UUIDs more easily.

Our plan is two-fold:
* "Improve usability of UUID manipulations" introduces 3 functions to
validate/store/retrieve/index UUIDs easily: they convert UUID between text form
(like ''aab5d5fd-70c1-11e5-a4fb-b026b977eb28' - 36 characters) and BINARY(16)
(16 bytes).
* The present WL: extends our existing bit-wise operations ('bitwise
AND', etc), which work with BIGINT, to also work with 
[VAR]BINARY/[TINY|MEDIUM|LONG]BLOB. Will allow to test/extract/recombine parts 
of a UUID, as an alternative to the SUBSTR proposed in 
https://www.percona.com/blog/2014/12/19/store-uuid-optimized-way/ .


IPv6 manipulation is the other reason: we already feature INET6_ATON
and INET6_NTOA functions which convert IPv6 adresses between text form
(like 'fe80::226:b9ff:fe77:eb17') and BINARY(16). The present WL will
allow to test/extract/recombine parts of an IPv6 address. Using
bitwise operations for IPv*4* addresses (which are convertible to BIGINT) is
already an established practice among MySQL users.

These users want bit ops on more than 64 bits and would be helped by
this WL:
http://stackoverflow.com/questions/18217664/mysql-bitwise-and-256-bit-BINARY-
values
http://stackoverflow.com/questions/7021549/bitwise-and-or-with-a-varBINARY255-
in-mysql
http://dba.stackexchange.com/questions/53351/xor-BINARY-values-greater-than-
64bit
http://stackoverflow.com/questions/11015628/mysql-xor-a-string-with-a-key

ANY CATCH?
==========

Yes, though we hope it's small and acceptable; please read
"Backward-compatibility and incompabilities" further down.