summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/jsonfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Add jsonb_insertTeodor Sigaev2016-04-061-24/+110
* Code review for error reports in jsonb_set().Tom Lane2016-03-231-10/+14
* Fix unsafe use of strtol() on a non-null-terminated Text datum.Tom Lane2016-03-231-1/+1
* Fix json_to_record() bug with nested objects.Tom Lane2016-03-021-1/+1
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Improve some messagesPeter Eisentraut2015-12-101-1/+1
* Use JsonbIteratorToken consistently in automatic variable declarations.Noah Misch2015-10-111-17/+17
* Prevent stack overflow in json-related functions.Noah Misch2015-10-051-0/+2
* Disallow invalid path elements in jsonb_setAndrew Dunstan2015-10-041-1/+4
* Fix the fastpath rule for jsonb_concat with an empty operand.Andrew Dunstan2015-09-131-5/+11
* Only adjust negative indexes in json_get up to the length of the path.Andrew Dunstan2015-07-281-13/+13
* Remove dead code.Andrew Dunstan2015-07-191-1/+1
* Support JSON negative array subscripts everywhereAndrew Dunstan2015-07-171-25/+75
* Fix "path" infrastructure bug affecting jsonb_set()Andrew Dunstan2015-06-121-2/+5
* Desupport jsonb subscript deletion on objectsAndrew Dunstan2015-06-071-0/+5
* Avoid naming a variable "new", and remove bogus initializer.Andrew Dunstan2015-05-311-10/+10
* Add a couple of missing JsonbValue type initialisers.Andrew Dunstan2015-05-311-0/+2
* Rename jsonb_replace to jsonb_set and allow it to add new valuesAndrew Dunstan2015-05-311-47/+104
* Revert "Simplify addJsonbToParseState()"Andrew Dunstan2015-05-261-13/+22
* Simplify addJsonbToParseState()Andrew Dunstan2015-05-261-22/+13
* Clean up and simplify jsonb_concat code.Andrew Dunstan2015-05-251-97/+27
* pgindent run for 9.5Bruce Momjian2015-05-231-49/+54
* Fix typos in commentsMagnus Hagander2015-05-171-1/+1
* Fix jsonb replace and delete on scalars and empty structuresAndrew Dunstan2015-05-131-53/+35
* Additional functions and operators for jsonbAndrew Dunstan2015-05-121-0/+717
* Fix two small bugs in json's populate_record_workerAndrew Dunstan2015-05-041-1/+5
* Remove spurious semicolons.Heikki Linnakangas2015-03-311-1/+1
* Use FLEXIBLE_ARRAY_MEMBER in struct RecordIOData.Tom Lane2015-02-201-9/+9
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* Fix some jsonb issues found by Coverity in recent commits.Andrew Dunstan2014-12-161-1/+3
* Add json_strip_nulls and jsonb_strip_nulls functions.Andrew Dunstan2014-12-121-0/+197
* Fix corner-case behaviors in JSON/JSONB field extraction operators.Tom Lane2014-08-221-279/+296
* Fix core dump in jsonb #> operator, and add regression test cases.Tom Lane2014-08-201-1/+15
* Remove use_json_as_text options from json_to_record/json_populate_record.Tom Lane2014-06-291-54/+6
* Rationalize error messages within jsonfuncs.c.Tom Lane2014-06-251-74/+113
* Cosmetic improvements in jsonfuncs.c.Tom Lane2014-06-251-108/+81
* Fix handling of nested JSON objects in json_populate_recordset and friends.Tom Lane2014-06-241-6/+22
* Improve the efficiency of certain jsonb get operations.Andrew Dunstan2014-06-011-112/+64
* Clean up jsonb code.Heikki Linnakangas2014-05-071-32/+32
* pgindent run for 9.4Bruce Momjian2014-05-061-17/+18
* De-anonymize the union in JsonbValue.Tom Lane2014-04-021-23/+23
* Fix uninitialized variables in json's populate_record_worker().Andrew Dunstan2014-03-261-0/+2
* Cleanup around json_to_record/json_to_recordsetAndrew Dunstan2014-03-261-12/+24
* Tidy up the populate/to_record{set} code for json a bit.Andrew Dunstan2014-03-251-36/+18
* Introduce jsonb, a structured format for storing json.Andrew Dunstan2014-03-231-91/+1060
* Fix crash in json_to_record().Jeff Davis2014-02-261-3/+17
* Fix whitespacePeter Eisentraut2014-02-051-2/+2
* In json code, clean up temp memory contexts after processing.Andrew Dunstan2014-02-031-0/+4
* Silence compiler warnings about possibly unset variables.Andrew Dunstan2014-01-291-2/+2
* Add json_array_elements_text function.Andrew Dunstan2014-01-291-12/+55