Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Add array_to_json and row_to_json functions. | Andrew Dunstan | 2012-02-03 | |
| | | | | | | | Also move the escape_json function from explain.c to json.c where it seems to belong. Andrew Dunstan, Reviewd by Abhijit Menon-Sen. | |||
* | Built-in JSON data type. | Robert Haas | 2012-01-31 | |
Like the XML data type, we simply store JSON data as text, after checking that it is valid. More complex operations such as canonicalization and comparison may come later, but this is enough for not. There are a few open issues here, such as whether we should attempt to detect UTF-8 surrogate pairs represented as \uXXXX\uYYYY, but this gets the basic framework in place. |