summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/json.c
Commit message (Expand)AuthorAgeFilesLines
* Revert 95d737ff to add 'ignore_nulls'Stephen Frost2014-09-291-15/+40
* Remove ill-conceived ban on zero length json object keys.Andrew Dunstan2014-09-251-4/+3
* Return NULL from json_object_agg if it gets no rows.Andrew Dunstan2014-09-251-1/+1
* Add 'ignore_nulls' option to row_to_jsonStephen Frost2014-09-111-40/+15
* Use ISO 8601 format for dates converted to JSON, too.Tom Lane2014-08-171-12/+43
* Clean up handling of unknown-type inputs in json_build_object and friends.Tom Lane2014-08-091-94/+72
* Further cleanup of JSON-specific error messages.Tom Lane2014-08-091-17/+9
* Improve some JSON error messages.Robert Haas2014-08-051-7/+12
* Allow empty string object keys in json_object().Andrew Dunstan2014-07-221-8/+0
* Add missing serial commasPeter Eisentraut2014-07-151-1/+1
* Consistently pass an "unsigned char" to ctype.h functions.Noah Misch2014-07-061-2/+5
* Fix typosAlvaro Herrera2014-06-121-1/+1
* Use EncodeDateTime instead of to_char to render JSON timestamps.Andrew Dunstan2014-06-031-27/+50
* Do not escape a unicode sequence when escaping JSON text.Andrew Dunstan2014-06-031-1/+20
* Output timestamps in ISO 8601 format when rendering JSON.Andrew Dunstan2014-06-031-0/+41
* Get rid of bogus dependency on typcategory in to_json() and friends.Tom Lane2014-05-091-229/+181
* Teach add_json() that jsonb is of TYPCATEGORY_JSON.Tom Lane2014-05-091-1/+1
* Avoid some pnstrdup()s when constructing jsonbHeikki Linnakangas2014-05-091-3/+0
* pgindent run for 9.4Bruce Momjian2014-05-061-6/+6
* Introduce jsonb, a structured format for storing json.Andrew Dunstan2014-03-231-16/+26
* Fix typos in comments.Fujii Masao2014-03-171-2/+2
* New json functions.Andrew Dunstan2014-01-281-19/+558
* Reindent json.c and jsonfuncs.c.Andrew Dunstan2014-01-221-32/+35
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Properly detect invalid JSON numbers when generating JSON.Andrew Dunstan2013-12-271-15/+23
* Use cstring_to_text_with_len when length is known.Robert Haas2013-11-181-6/+6
* Fix whitespace issues found by git diff --check, add gitattributesPeter Eisentraut2013-11-101-36/+36
* Get rid of more cases of the "must detoast before output function" meme.Tom Lane2013-11-031-53/+7
* json_typeof function.Andrew Dunstan2013-10-101-0/+52
* Message punctuation and pluralization fixesPeter Eisentraut2013-08-091-7/+7
* Clean up new JSON API typedefsPeter Eisentraut2013-07-201-15/+14
* Avoid reading past datum end when parsing JSON.Noah Misch2013-06-121-8/+13
* Fix unescaping of JSON Unicode escapes, especially for non-UTF8.Andrew Dunstan2013-06-121-8/+34
* Handle Unicode surrogate pairs correctly when processing JSON.Andrew Dunstan2013-06-081-0/+52
* pgindent run for release 9.3Bruce Momjian2013-05-291-1/+1
* Use correct length to convert json unicode escapes.Andrew Dunstan2013-05-011-1/+1
* Add new JSON processing functions and parser API.Andrew Dunstan2013-03-291-304/+606
* JSON generation improvements.Andrew Dunstan2013-03-101-20/+297
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-301-0/+1
* Remove inappropriate semicolons after function definitions.Tom Lane2012-06-301-4/+4
* Revisit error message details for JSON input parsing.Tom Lane2012-06-131-50/+161
* Minor code review for json.c.Tom Lane2012-06-121-73/+91
* Mark JSON error detail messages for translation.Robert Haas2012-06-121-6/+6
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-113/+116
* Fix bogus handling of control characters in json_lex_string().Tom Lane2012-06-041-4/+4
* Fix incorrect logic in JSON number lexerPeter Eisentraut2012-05-201-2/+2
* Correctly handle NULLs in JSON output.Andrew Dunstan2012-02-231-12/+14
* Fix typo, noticed by Will Crawford.Andrew Dunstan2012-02-211-1/+1
* Fix a couple of cases of JSON output.Andrew Dunstan2012-02-201-4/+21