summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/json.c
AgeCommit message (Expand)Author
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-04-24Unify error messagesAlvaro Herrera
2019-01-02Update copyright for 2019Bruce Momjian
2018-10-25Apply unconstify() in more placesPeter Eisentraut
2018-02-19Remove bogus "extern" annotations on function definitions.Tom Lane
2018-01-30Add some noreturn attributes to help static analyzersPeter Eisentraut
2018-01-17Centralize json and jsonb handling of datetime typesAndrew Dunstan
2018-01-03Update copyright for 2018Bruce Momjian
2017-12-18Fix typo on commentMagnus Hagander
2017-10-25Process variadic arguments consistently in json functionsAndrew Dunstan
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-06-13Re-run pgindent.Tom Lane
2017-06-04Assorted translatable string fixesAlvaro Herrera
2017-05-18Fix typo in comment.Heikki Linnakangas
2017-05-17Post-PG 10 beta1 pgindent runBruce Momjian
2017-03-12Use wrappers of PG_DETOAST_DATUM_PACKED() more.Noah Misch
2017-02-22Correctly handle array pseudotypes in to_json and to_jsonbAndrew Dunstan
2017-01-18Make messages mentioning type names more uniformAlvaro Herrera
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-03-15Fix typos.Robert Haas
2016-02-03Fix IsValidJsonNumber() to notice trailing non-alphanumeric garbage.Tom Lane
2016-01-02Update copyright for 2016Bruce Momjian
2015-12-23Remove unnecessary escaping in C character literalsPeter Eisentraut
2015-10-20Fix incorrect translation of minus-infinity datetimes for json/jsonb.Tom Lane
2015-10-05Prevent stack overflow in json-related functions.Noah Misch
2015-09-18Cache argument type information in json(b) aggregate functions.Andrew Dunstan
2015-07-18Support JSON negative array subscripts everywhereAndrew Dunstan
2015-05-24pgindent run for 9.5Bruce Momjian
2015-03-31Remove spurious semicolons.Heikki Linnakangas
2015-02-26Render infinite date/timestamps as 'infinity' for json/jsonbAndrew Dunstan
2015-01-30Fix jsonb Unicode escape processing, and in consequence disallow \u0000.Tom Lane
2015-01-06Update copyright for 2015Bruce Momjian
2014-12-12Add several generator functions for jsonb that exist for json.Andrew Dunstan
2014-12-02Fix JSON aggregates to work properly when final function is re-executed.Tom Lane
2014-12-01Fix hstore_to_json_loose's detection of valid JSON number values.Andrew Dunstan
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-12Add 'ignore_nulls' option to row_to_jsonStephen Frost
2014-08-18Use 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