WL#9531: InnoDB_New_DD: Enable table encryption and transparent compression

Affects: Server-8.0   —   Status: Complete

The worklog is to enable the encryption and transparent compression for newDD
project.

Currently, the encryption is a table property and indicated by a table flag:
DICT_TF2_ENCRYPTION, and stored in InnoDB internal dictionary table sys_tables. 
So to support it in newDD, this flag needs to be a part of option field for the 
table. Which is stored in server dictionary, that is in the options field of 
mysql.tables.

For compression, same as encryption, there is also a option in mysql.tables.

Actually, server layer has already store these table options to New DD. We just 
need to get them from New DD by API, and set it to table object.  


Other aspect of the code should remain to be the same.