MDEV-23143 Add JSON_EQUALS function
This patch implements JSON_EQUALS SQL function. The function takes
advantage of the json_normalize functionality and does the following:
norm_a = json_normalize(a)
norm_b = json_normalize(b)
return strcmp(norm_a, norm_b)
Co-authored-by:
Vicențiu Ciorbaru <vicentiu@mariadb.org>
Showing
Please register or sign in to comment