WL#8920: Improve usability of UUID manipulations

Affects: Server-8.0   —   Status: Complete

The goal of this WL is to improve the experience of users working with UUID
while not implementing a new data type.

* Some additional insight into UUIDs the standard format can be found 
here: https://www.ietf.org/rfc/rfc4122.txt

Problem
=======
1) The column type binary(16) is extensively used as a compact storage for
UUID's. But in order to transform the text (human-readable) format into binary
format, users must use some text manipulation functions like unhex() and 
replace().
Example:
unhex(replace('aab5d5fd-70c1-11e5-a4fb-b026b977eb28', '-', ''))

2) in order to do the reverse transformation, from the binary(16) to
human-readable format, users must use even more text manipulation functions.
Example:
insert(
    insert(
      insert(
        insert(hex(uuid_bin),9,0,'-'),
        14,0,'-'),
      19,0,'-'),
    24,0,'-')

3) A valid UUID text must have a certain length and be made up of only certain
characters. In MySQL there is no simple way to validate text UUIDs.

4) UUIDs version 1 store the time-low at the 
beginning of the string making the index inserts very slow (since the variations 
between two consecutive generated UUIDs are very high at the beginning of the 
string).

The way this problem will be solved is by providing the user with 3 new SQL
functions:
- two functions will take care of the conversion to/from binary/text format,
with an optional twist to help indexing,
- one function will validate the text format.