diff options
author | Bruce Momjian | 2015-10-07 13:06:49 +0000 |
---|---|---|
committer | Bruce Momjian | 2015-10-07 13:06:49 +0000 |
commit | b852dc4cbd09156e2c74786d5b265f03d45bc404 (patch) | |
tree | 8e29aa319ccb7e003d9997e47207dd0acfa82dcf /doc/src/sgml/json.sgml | |
parent | 7e2a18a9161fee7e67642863f72b51d77d3e996f (diff) |
docs: clarify JSONB operator descriptions
No catalog bump as the catalog changes are for SQL operator comments.
Backpatch through 9.5
Diffstat (limited to 'doc/src/sgml/json.sgml')
-rw-r--r-- | doc/src/sgml/json.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/json.sgml b/doc/src/sgml/json.sgml index 1e78558e27a..b4b390b23eb 100644 --- a/doc/src/sgml/json.sgml +++ b/doc/src/sgml/json.sgml @@ -369,8 +369,9 @@ SELECT '"foo"'::jsonb ? 'foo'; </para> <para> The default GIN operator class for <type>jsonb</> supports queries with - the <literal>@></>, <literal>?</>, <literal>?&</> - and <literal>?|</> operators. + top-level key-exists operators <literal>?</>, <literal>?&</> + and <literal>?|</> operators and path/value-exists operator + <literal>@></>. (For details of the semantics that these operators implement, see <xref linkend="functions-jsonb-op-table">.) An example of creating an index with this operator class is: |