From: Tom Lane Date: Tue, 11 Oct 2022 18:28:38 +0000 (-0400) Subject: Doc: add entry for pg_get_partkeydef(). X-Git-Tag: REL_16_BETA1~1504 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=422f86a82edcc53076d120cbc9a584e40be30013;p=postgresql.git Doc: add entry for pg_get_partkeydef(). Other pg_get_XXXdef() functions are documented, so it seems reasonable to include this as well. Ian Barwick Discussion: https://postgr.es/m/CAB8KJ=hb2QZXdgyrrRjPCw++DsrRcui4fKArWabQ+oij+2x=_w@mail.gmail.com --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index b2bdbc7d1cc..b5a2f94c4ee 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -23718,6 +23718,23 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); + + + + pg_get_partkeydef + + pg_get_partkeydef ( table oid ) + text + + + Reconstructs the definition of a partitioned table's partition + key, in the form it would have in the PARTITION + BY clause of CREATE TABLE. + (This is a decompiled reconstruction, not the original text + of the command.) + + +