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 | 8b07ee0beb9f67716a13bae193207ac19129bd0c (patch) | |
tree | 6785b60b3a97285f1355af65726733b8695e5df7 | |
parent | 707691ea620eaa7d8c7fc1e5177a54e944f39b59 (diff) | |
download | postgresql-8b07ee0beb9f67716a13bae193207ac19129bd0c.tar.gz postgresql-8b07ee0beb9f67716a13bae193207ac19129bd0c.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> |