Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2015-10-07 13:06:49 +0000
committerBruce Momjian2015-10-07 13:06:49 +0000
commitb852dc4cbd09156e2c74786d5b265f03d45bc404 (patch)
tree8e29aa319ccb7e003d9997e47207dd0acfa82dcf /doc/src/sgml/json.sgml
parent7e2a18a9161fee7e67642863f72b51d77d3e996f (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.sgml5
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>@&gt;</>, <literal>?</>, <literal>?&amp;</>
- and <literal>?|</> operators.
+ top-level key-exists operators <literal>?</>, <literal>?&amp;</>
+ and <literal>?|</> operators and path/value-exists operator
+ <literal>@&gt;</>.
(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: