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:49:48 -0400 |
commit | 0cb01a04f60e000c437d82f5fe9928422831cdf7 (patch) | |
tree | 0f79deafdc0f4e9c484772f722d033f0e8c682a2 | |
parent | 07a9f4f73386319f4a6b02e0c5aecf98136adcdb (diff) | |
download | postgresql-0cb01a04f60e000c437d82f5fe9928422831cdf7.tar.gz postgresql-0cb01a04f60e000c437d82f5fe9928422831cdf7.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> |