I was trying to create a MySQL table with a column type "DateTime(3)" by using Liquibase changelog, e.g.
<column name="dateTimeColumn" type="DateTime(3)">
. However, The output of data type is always "DateTime" (Fractional seconds disappered). But, when I changed the type to "Timestamp(3)", it worked. Anyone know what is the problem ? Please advice.