Recently I tested several different MySQL upgrade scenarios for the blog posts I wrote about the temporal format upgrade. This required me to create a bunch of tables with datetime/timestamp/time columns in MySQL 5.5 and then physically copy those tables to a MySQL 5.6 or 5.7 database. I created 4 copies of each table to test out InnoDB versus MyISAM and partitioned tables versus non-partitioned tables. MySQL Sandbox made the process easy.
These are the MySQL versions I wanted to test:
- 5.5.34
- 5.6.15
- 5.6.22
- 5.6.25
- 5.7.7
I was able to download the latest 5.6 and 5.7 releases here and the older releases here.
Read on for an overview of the MySQL …
[Read more]