The MySQL 5.6.4 release introduced support for
fractional values within the temporal datatypes:
TIME
, DATETIME
, and
TIMESTAMP
. Hence the storage requirement and
encoding differs for them in comparison to older (5.5 and
earlier) temporal datatypes. The storage format for the temporal
datatypes in the old format are not space efficient either, and
recreating tables having both the new and old formats can be a
long and tedious process. For these reasons, we wanted to make it
easier for users to identify precisely which tables, if any, need
to be upgraded.
In my previous blog post, where we looked at the process of upgrading old MySQL-5.5 format temporals to the MySQL-5.6 format, there was the …
[Read more]