The reordering of Json-Content is already an known issue while sending AJAX Request, but I wasn't aware that the same happens while inserting Json-content into an Mysql Table with JSON type.
In this case the mysql server also orders its content before saving.
before:
{"c":3, "b":2, "a":1}
after:
{"a":1, "b":2, "c":3}
Suppose I would like to prevent this ordering for some purpose... Is there any possibility to disable the ordering without adapting the Json data itself?