In decode.rs:
https://github.com/datafuselabs/opensrv/blob/68aa6a05c7d31b292592d73fa87d994bdde36042/mysql/src/value/decode.rs#L236-L239
The code asserts that v must have length of either 7 or 11.
However, it seems that 0 and 4 are also valid:
from https://mariadb.com/kb/en/resultset-row/#timestamp-binary-encoding
Any specific considerations why this assertion only makes 7 and 11 valid here?