diff options
author | Tom Lane | 2023-04-10 19:49:48 +0000 |
---|---|---|
committer | Tom Lane | 2023-04-10 19:50:29 +0000 |
commit | 4380c2509d51febad34e1fac0cfaeb98aaa716c5 (patch) | |
tree | 43491bccab2a4061d998ea6ea5b16001b9c7c280 /doc/src | |
parent | 5d6728e588c37a4e458db9d55b308c8a3832a944 (diff) |
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.
Diffstat (limited to 'doc/src')
-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 71697155d7..9c5ffcddf8 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> |