summaryrefslogtreecommitdiff
path: root/unittest/json_lib/json_normalize-t.c
Commit message (Collapse)AuthorAgeFilesLines
* Add json_normalize function to json_libEric Herman2021-07-211-0/+280
This patch implements a library for normalizing json documents. The algorithm is: * Recursively sort json keys according to utf8mb4_bin collation. * Normalize numbers to be of the form [-]<digit>.<frac>E<exponent> * All unneeded whitespace and line endings are removed. * Arrays are not sorted. Co-authored-by: Vicențiu Ciorbaru <vicentiu@mariadb.org>