Can mysqldump –hex-blob also dump DEFAULT values as hex?

We do database dumps of Shopware 6 databases. The system stores UUIDs in binary(16) fields. Now when dumping databases with the –hex-blob option, the data columns are written properly as hex (0x12345….) but we saw that default values are still binary data (see cms_page_version_id) CREATE TABLE `category` ( `id` binary(16) NOT NULL, `version_id` binary(16) NOT… Read More Can mysqldump –hex-blob also dump DEFAULT values as hex?