WL#9191: Add JSON_PRETTY function

Affects: Server-8.0   —   Status: Complete

User Feedback from presenting JSON features has suggested that we are missing a function to format JSON in a human-readable way (with new lines and indentation).

This functionality is available in both PHP and PostgreSQL under the name "pretty":


PHP: <?php echo json_encode($json, JSON_PRETTY_PRINT); ?>

PG:

 jsonb_pretty('[{"f1":1,"f2":null},2,null,3]')	
 —> 
 [
     {
         "f1": 1,
         "f2": null
     },
     2,
     null,
     3
 ]

http://www.postgresql.org/docs/9.5/static/functions-json.html


This WL is to implement a JSON_PRETTY function in MySQL:

  • Similar to other JSON functions it should accept either a JSON native data-type or string representation of JSON
  • It should return a JSON formatted string.