From 6dd56053a558968e986d54f4a7d5b541921906e2 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Thu, 11 Jun 2026 11:29:33 +1000 Subject: [PATCH v1] Make the DDL functions table alphabetical --- doc/src/sgml/func/func-info.sgml | 46 ++++++++++++++++---------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/doc/src/sgml/func/func-info.sgml b/doc/src/sgml/func/func-info.sgml index 00f64f50ceb..b2e3f24128b 100644 --- a/doc/src/sgml/func/func-info.sgml +++ b/doc/src/sgml/func/func-info.sgml @@ -3888,6 +3888,29 @@ acl | {postgres=arwdDxtm/postgres,foo=r/postgres} + + + + pg_get_database_ddl + + pg_get_database_ddl + ( database regdatabase + , VARIADIC options + text ) + setof text + + + Reconstructs the CREATE DATABASE statement for the + specified database, followed by ALTER DATABASE + statements for connection limit, template status, and configuration + settings. Each statement is returned as a separate row. + The following options are supported: + pretty (boolean) for formatted output, + owner (boolean) to include OWNER, + and tablespace (boolean) to include + TABLESPACE. + + @@ -3938,29 +3961,6 @@ acl | {postgres=arwdDxtm/postgres,foo=r/postgres} OWNER. - - - - pg_get_database_ddl - - pg_get_database_ddl - ( database regdatabase - , VARIADIC options - text ) - setof text - - - Reconstructs the CREATE DATABASE statement for the - specified database, followed by ALTER DATABASE - statements for connection limit, template status, and configuration - settings. Each statement is returned as a separate row. - The following options are supported: - pretty (boolean) for formatted output, - owner (boolean) to include OWNER, - and tablespace (boolean) to include - TABLESPACE. - - -- 2.47.3