From 3f2ab3f34da9d4299255a972a1c022a152bbf3f7 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 22 Jan 2026 16:35:50 +0900 Subject: [PATCH] doc: Mention pg_get_partition_constraintdef() All the other SQL functions reconstructing definitions or commands are listed in the documentation, except this one. Oversight in 1848b73d4576. Author: Todd Liebenschutz-Jones Discussion: https://postgr.es/m/CAGTRfaD6uRQ9iutASDzc_iDoS25sQTLWgXTtR3ta63uwTxq6bA@mail.gmail.com Backpatch-through: 14 --- doc/src/sgml/func.sgml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index da1d87824d3..25c5d4b90df 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -24307,6 +24307,21 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); + + + + pg_get_partition_constraintdef + + pg_get_partition_constraintdef ( table oid ) + text + + + Reconstructs the definition of a partition constraint. + (This is a decompiled reconstruction, not the original text + of the command.) + + + -- 2.47.3