]> granicus.if.org Git - postgresql/commit
Introduce jsonb, a structured format for storing json.
authorAndrew Dunstan <andrew@dunslane.net>
Sun, 23 Mar 2014 20:40:19 +0000 (16:40 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Sun, 23 Mar 2014 20:40:19 +0000 (16:40 -0400)
commitd9134d0a355cfa447adc80db4505d5931084278a
treecefe155d0f0f71b9279444a86eab4b1b1facafdb
parentb2b2491b06074e68fc7c96148cb0fdf0c8eb0469
Introduce jsonb, a structured format for storing json.

The new format accepts exactly the same data as the json type. However, it is
stored in a format that does not require reparsing the orgiginal text in order
to process it, making it much more suitable for indexing and other operations.
Insignificant whitespace is discarded, and the order of object keys is not
preserved. Neither are duplicate object keys kept - the later value for a given
key is the only one stored.

The new type has all the functions and operators that the json type has,
with the exception of the json generation functions (to_json, json_agg etc.)
and with identical semantics. In addition, there are operator classes for
hash and btree indexing, and two classes for GIN indexing, that have no
equivalent in the json type.

This feature grew out of previous work by Oleg Bartunov and Teodor Sigaev, which
was intended to provide similar facilities to a nested hstore type, but which
in the end proved to have some significant compatibility issues.

Authors: Oleg Bartunov,  Teodor Sigaev, Peter Geoghegan and Andrew Dunstan.
Review: Andres Freund
43 files changed:
contrib/hstore/Makefile
contrib/hstore/expected/hstore.out
contrib/hstore/hstore--1.2--1.3.sql [new file with mode: 0644]
contrib/hstore/hstore--1.3.sql [moved from contrib/hstore/hstore--1.2.sql with 97% similarity]
contrib/hstore/hstore.control
contrib/hstore/hstore_io.c
contrib/hstore/sql/hstore.sql
doc/src/sgml/datatype.sgml
doc/src/sgml/filelist.sgml
doc/src/sgml/func.sgml
doc/src/sgml/json.sgml [new file with mode: 0644]
src/backend/catalog/system_views.sql
src/backend/utils/adt/Makefile
src/backend/utils/adt/json.c
src/backend/utils/adt/jsonb.c [new file with mode: 0644]
src/backend/utils/adt/jsonb_gin.c [new file with mode: 0644]
src/backend/utils/adt/jsonb_op.c [new file with mode: 0644]
src/backend/utils/adt/jsonb_util.c [new file with mode: 0644]
src/backend/utils/adt/jsonfuncs.c
src/backend/utils/adt/numeric.c
src/include/catalog/pg_amop.h
src/include/catalog/pg_amproc.h
src/include/catalog/pg_cast.h
src/include/catalog/pg_opclass.h
src/include/catalog/pg_operator.h
src/include/catalog/pg_opfamily.h
src/include/catalog/pg_proc.h
src/include/catalog/pg_type.h
src/include/funcapi.h
src/include/utils/json.h
src/include/utils/jsonapi.h
src/include/utils/jsonb.h [new file with mode: 0644]
src/include/utils/numeric.h
src/test/regress/data/jsonb.data [new file with mode: 0644]
src/test/regress/expected/json.out
src/test/regress/expected/json_1.out
src/test/regress/expected/jsonb.out [new file with mode: 0644]
src/test/regress/expected/jsonb_1.out [new file with mode: 0644]
src/test/regress/expected/opr_sanity.out
src/test/regress/parallel_schedule
src/test/regress/serial_schedule
src/test/regress/sql/json.sql
src/test/regress/sql/jsonb.sql [new file with mode: 0644]