diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-04-10 15:49:48 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-04-10 15:50:29 -0400 |
commit | 4380c2509d51febad34e1fac0cfaeb98aaa716c5 (patch) | |
tree | 43491bccab2a4061d998ea6ea5b16001b9c7c280 | |
parent | 5d6728e588c37a4e458db9d55b308c8a3832a944 (diff) | |
download | postgresql-4380c2509d51febad34e1fac0cfaeb98aaa716c5.tar.gz postgresql-4380c2509d51febad34e1fac0cfaeb98aaa716c5.zip |
Doc: add missed entries in BRIN extensibility tables.
The tables in "71.3. Extensibility" listing the support functions
for bloom and minmax-multi opclasses should include the associated
options function. While this isn't quite as required as the rest,
you need it for full functionality of the opclass.
Back-patch to v14 where these functions were added.
-rw-r--r-- | doc/src/sgml/brin.sgml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/src/sgml/brin.sgml b/doc/src/sgml/brin.sgml index 71697155d7c..9c5ffcddf84 100644 --- a/doc/src/sgml/brin.sgml +++ b/doc/src/sgml/brin.sgml @@ -1229,6 +1229,10 @@ typedef struct BrinOpcInfo <entry>internal function <function>brin_bloom_union()</function></entry> </row> <row> + <entry>Support Procedure 5</entry> + <entry>internal function <function>brin_bloom_options()</function></entry> + </row> + <row> <entry>Support Procedure 11</entry> <entry>function to compute hash of an element</entry> </row> @@ -1287,6 +1291,10 @@ typedef struct BrinOpcInfo <entry>internal function <function>brin_minmax_multi_union()</function></entry> </row> <row> + <entry>Support Procedure 5</entry> + <entry>internal function <function>brin_minmax_multi_options()</function></entry> + </row> + <row> <entry>Support Procedure 11</entry> <entry>function to compute distance between two values (length of a range)</entry> </row> |