diff options
author | Bruce Momjian <bruce@momjian.us> | 2015-10-07 09:06:49 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2015-10-07 09:06:49 -0400 |
commit | 2169e878c4a542e41a7d66cbb40d9c6bfde23f57 (patch) | |
tree | 7908d0d65e305efbb4b6d6fc58e7c932a0e718aa /src | |
parent | 02580df6c3ac288f2ed5e38ed42532512993d468 (diff) | |
download | postgresql-2169e878c4a542e41a7d66cbb40d9c6bfde23f57.tar.gz postgresql-2169e878c4a542e41a7d66cbb40d9c6bfde23f57.zip |
docs: clarify JSONB operator descriptions
No catalog bump as the catalog changes are for SQL operator comments.
Backpatch through 9.5
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_operator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_operator.h b/src/include/catalog/pg_operator.h index 26c9d4e4f7b..eec9c60c505 100644 --- a/src/include/catalog/pg_operator.h +++ b/src/include/catalog/pg_operator.h @@ -1806,11 +1806,11 @@ DESCR("greater than or equal"); DATA(insert OID = 3246 ( "@>" PGNSP PGUID b f f 3802 3802 16 3250 0 jsonb_contains contsel contjoinsel )); DESCR("contains"); DATA(insert OID = 3247 ( "?" PGNSP PGUID b f f 3802 25 16 0 0 jsonb_exists contsel contjoinsel )); -DESCR("exists"); +DESCR("key exists"); DATA(insert OID = 3248 ( "?|" PGNSP PGUID b f f 3802 1009 16 0 0 jsonb_exists_any contsel contjoinsel )); -DESCR("exists any"); +DESCR("any key exists"); DATA(insert OID = 3249 ( "?&" PGNSP PGUID b f f 3802 1009 16 0 0 jsonb_exists_all contsel contjoinsel )); -DESCR("exists all"); +DESCR("all keys exist"); DATA(insert OID = 3250 ( "<@" PGNSP PGUID b f f 3802 3802 16 3246 0 jsonb_contained contsel contjoinsel )); DESCR("is contained by"); DATA(insert OID = 3284 ( "||" PGNSP PGUID b f f 3802 3802 3802 0 0 jsonb_concat - - )); |