summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/json.c
AgeCommit message (Expand)Author
2014-09-29Revert 95d737ff to add 'ignore_nulls'Stephen Frost
2014-09-25Remove ill-conceived ban on zero length json object keys.Andrew Dunstan
2014-09-25Return NULL from json_object_agg if it gets no rows.Andrew Dunstan
2014-09-11Add 'ignore_nulls' option to row_to_jsonStephen Frost
2014-08-17Use ISO 8601 format for dates converted to JSON, too.Tom Lane
2014-08-09Clean up handling of unknown-type inputs in json_build_object and friends.Tom Lane
2014-08-09Further cleanup of JSON-specific error messages.Tom Lane
2014-08-05Improve some JSON error messages.Robert Haas
2014-07-22Allow empty string object keys in json_object().Andrew Dunstan
2014-07-15Add missing serial commasPeter Eisentraut
2014-07-06Consistently pass an "unsigned char" to ctype.h functions.Noah Misch
2014-06-12Fix typosAlvaro Herrera
2014-06-03Use EncodeDateTime instead of to_char to render JSON timestamps.Andrew Dunstan
2014-06-03Do not escape a unicode sequence when escaping JSON text.Andrew Dunstan
2014-06-03Output timestamps in ISO 8601 format when rendering JSON.Andrew Dunstan
2014-05-09Get rid of bogus dependency on typcategory in to_json() and friends.Tom Lane
2014-05-09Teach add_json() that jsonb is of TYPCATEGORY_JSON.Tom Lane
2014-05-09Avoid some pnstrdup()s when constructing jsonbHeikki Linnakangas
2014-05-06pgindent run for 9.4Bruce Momjian
2014-03-23Introduce jsonb, a structured format for storing json.Andrew Dunstan
2014-03-17Fix typos in comments.Fujii Masao
2014-01-28New json functions.Andrew Dunstan
2014-01-22Reindent json.c and jsonfuncs.c.Andrew Dunstan
2014-01-07Update copyright for 2014Bruce Momjian
2013-12-27Properly detect invalid JSON numbers when generating JSON.Andrew Dunstan
2013-11-18Use cstring_to_text_with_len when length is known.Robert Haas
2013-11-10Fix whitespace issues found by git diff --check, add gitattributesPeter Eisentraut
2013-11-03Get rid of more cases of the "must detoast before output function" meme.Tom Lane
2013-10-10json_typeof function.Andrew Dunstan
2013-08-09Message punctuation and pluralization fixesPeter Eisentraut
2013-07-20Clean up new JSON API typedefsPeter Eisentraut
2013-06-12Avoid reading past datum end when parsing JSON.Noah Misch
2013-06-12Fix unescaping of JSON Unicode escapes, especially for non-UTF8.Andrew Dunstan
2013-06-08Handle Unicode surrogate pairs correctly when processing JSON.Andrew Dunstan
2013-05-29pgindent run for release 9.3Bruce Momjian
2013-05-01Use correct length to convert json unicode escapes.Andrew Dunstan
2013-03-29Add new JSON processing functions and parser API.Andrew Dunstan
2013-03-10JSON generation improvements.Andrew Dunstan
2013-01-01Update copyrights for 2013Bruce Momjian
2012-08-30Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera
2012-06-30Remove inappropriate semicolons after function definitions.Tom Lane
2012-06-13Revisit error message details for JSON input parsing.Tom Lane
2012-06-12Minor code review for json.c.Tom Lane
2012-06-12Mark JSON error detail messages for translation.Robert Haas
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-06-04Fix bogus handling of control characters in json_lex_string().Tom Lane
2012-05-20Fix incorrect logic in JSON number lexerPeter Eisentraut
2012-02-23Correctly handle NULLs in JSON output.Andrew Dunstan
2012-02-21Fix typo, noticed by Will Crawford.Andrew Dunstan
2012-02-20Fix a couple of cases of JSON output.Andrew Dunstan