Recently, I was working on a MySQL support ticket where a customer was facing
an issue while transporting tablespace from MySQL
5.6 to MySQL 5.7.
After closely reviewing the situation, I saw that
while importing tablespace they were getting errors such as:
ERROR 1808 (HY000): Schema mismatch (Table flags don't match, server table has 0x10 and the meta-data file has 0x1)
After some research, I found that there is a similar bug reported to MySQL for this issue (https://bugs.mysql.com/bug.php?id=76142), but no solution is mentioned. I tested the scenario locally and found a solution …
[Read more]