Does anyone know why the function JSON_OBJECT formats TIME-data automatically? When I do the following:
SELECT
        JSON_OBJECT(
            'Time_Transformed', TIME('11:42:00')
        ) AS myJson,
        TIME('11:42:00') AS `Time_Raw`
The result is:
myJson: {"Time_Transformed": "11:42:00.000000"}
Time_Raw: 11:42:00