WL#9720: SET PERSIST capture user, host and timestamp

Affects: Server-8.0   —   Status: Complete

We have had good reception to SET PERSIST.  One of the feedback requests has 
been that it would be useful to capture the user + a timestamp of the last 
configuration change.

i.e. 

mysql> select * from performance_schema.variables_info where variable_name= 
'max_connections'\G
**********************************
VARIABLE_NAME:    max_connections
VARIABLE_SOURCE:  PERSISTED
VARIABLE_PATH:    C:\.....
MIN_VALUE:        1
MAX_VALUE:        100000
SET_TIME:         2016-10-12 12:01:01
SET_BY:           morgan@localhost

The names 'set_time' and 'set_by' are borrowed from the table SYS.sys_config.  
The data types are as follows:

    set_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    set_by VARCHAR(128)

User Documentation
==================

* https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html
* https://dev.mysql.com/doc/refman/8.0/en/reset-persist.html
* https://dev.mysql.com/doc/refman/8.0/en/persisted-variables-table.html
* https://dev.mysql.com/doc/refman/8.0/en/variables-info-table.html
* https://dev.mysql.com/doc/refman/8.0/en/using-system-variables.html