From: Peter Eisentraut Date: Mon, 4 May 2026 07:45:21 +0000 (+0200) Subject: doc: Fix up spacing around verbatim DocBook elements X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2fcc8aaeb23a387b22e7abde61b2c7943cd0a4a6;p=thirdparty%2Fpostgresql.git doc: Fix up spacing around verbatim DocBook elements --- diff --git a/doc/src/sgml/func/func-admin.sgml b/doc/src/sgml/func/func-admin.sgml index 24ecb46542e..72038fc835f 100644 --- a/doc/src/sgml/func/func-admin.sgml +++ b/doc/src/sgml/func/func-admin.sgml @@ -2189,7 +2189,7 @@ SELECT pg_restore_attribute_stats( arguments are passed as pairs of argname and argvalue in the form: - SELECT pg_restore_extended_stats( +SELECT pg_restore_extended_stats( 'arg1name', 'arg1value'::arg1type, 'arg2name', 'arg2value'::arg2type, 'arg3name', 'arg3value'::arg3type); @@ -2199,7 +2199,7 @@ SELECT pg_restore_attribute_stats( For example, to set some values for the statistics object myschema.mystatsobj: - SELECT pg_restore_extended_stats( +SELECT pg_restore_extended_stats( 'schemaname', 'tab_schema', 'relname', 'tab_name', 'statistics_schemaname', 'stats_schema', diff --git a/doc/src/sgml/func/func-window.sgml b/doc/src/sgml/func/func-window.sgml index bcf755c9ebc..bb41387f873 100644 --- a/doc/src/sgml/func/func-window.sgml +++ b/doc/src/sgml/func/func-window.sgml @@ -268,8 +268,8 @@ The null treatment option must be one of: - RESPECT NULLS - IGNORE NULLS +RESPECT NULLS +IGNORE NULLS If unspecified, the default is RESPECT NULLS which includes NULL values in any result calculation. IGNORE NULLS ignores NULL values. diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index be8d3a5bfea..6d9636bd125 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -1410,13 +1410,13 @@ synchronous_standby_names = 'ANY 2 (s1, s2, s3)' operations, the application retrieves the current WAL location using a function call like this. - + postgres=# SELECT pg_current_wal_insert_lsn(); -pg_current_wal_insert_lsn --------------------- -0/306EE20 + pg_current_wal_insert_lsn +--------------------------- + 0/306EE20 (1 row) - + @@ -1427,13 +1427,13 @@ pg_current_wal_insert_lsn the standby's WAL replay process reaches (or exceeds) the specified LSN. - + postgres=# WAIT FOR LSN '0/306EE20'; status --------- +--------- success (1 row) - + Once the command returns a status of success, it guarantees that all changes up to the provided LSN have been applied, ensuring that subsequent read queries will reflect the latest updates. diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 0a19c2b553b..487997f848f 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -10648,11 +10648,11 @@ typedef struct development and testing. The variable accepts a comma-separated list of debug options: - + PGOAUTHDEBUG=option1,option2,... for safe options only PGOAUTHDEBUG=UNSAFE:option1,option2,... when using unsafe options PGOAUTHDEBUG=UNSAFE legacy format; enables all options - + @@ -10729,11 +10729,11 @@ PGOAUTHDEBUG=UNSAFE legacy format; enables Examples: - + PGOAUTHDEBUG=call-count safe options only PGOAUTHDEBUG=UNSAFE:http,trace enable HTTP and traffic logging PGOAUTHDEBUG=UNSAFE:http,call-count mix of unsafe and safe - + diff --git a/doc/src/sgml/maintenance.sgml b/doc/src/sgml/maintenance.sgml index 76262df0502..4a21bdb5de7 100644 --- a/doc/src/sgml/maintenance.sgml +++ b/doc/src/sgml/maintenance.sgml @@ -830,14 +830,14 @@ HINT: Execute a database-wide VACUUM in that database. The pg_get_multixact_stats() function described in provides a way to monitor multixact allocation and usage patterns in real time, for example: - + =# SELECT *, pg_size_pretty(members_size) members_size_pretty FROM pg_catalog.pg_get_multixact_stats(); num_mxids | num_members | members_size | oldest_multixact | members_size_pretty -----------+-------------+--------------+------------------+--------------------- 311740299 | 2785241176 | 13926205880 | 2 | 13 GB (1 row) - + This output shows a system with significant multixact activity: about 312 million multixact IDs and about 2.8 billion member entries consuming 13 GB of storage space. diff --git a/doc/src/sgml/pgplanadvice.sgml b/doc/src/sgml/pgplanadvice.sgml index 73155461c0b..b1395ec951e 100644 --- a/doc/src/sgml/pgplanadvice.sgml +++ b/doc/src/sgml/pgplanadvice.sgml @@ -517,14 +517,14 @@ NO_GATHER(advice_target [ ... ]) - Finalize Aggregate - -> Gather - -> Partial Aggregate - -> Parallel Seq Scan on outer_example - Filter: (something = (hashed SubPlan any_1).col1) - SubPlan any_1 - -> Seq Scan on inner_example - Filter: (something_else > 100) +Finalize Aggregate + -> Gather + -> Partial Aggregate + -> Parallel Seq Scan on outer_example + Filter: (something = (hashed SubPlan any_1).col1) + SubPlan any_1 + -> Seq Scan on inner_example + Filter: (something_else > 100) @@ -534,13 +534,13 @@ NO_GATHER(advice_target [ ... ]) - Aggregate - -> Seq Scan on outer_example - Filter: (something = (hashed SubPlan any_1).col1) - SubPlan any_1 - -> Gather - -> Parallel Seq Scan on inner_example - Filter: (something_else > 100) +Aggregate + -> Seq Scan on outer_example + Filter: (something = (hashed SubPlan any_1).col1) + SubPlan any_1 + -> Gather + -> Parallel Seq Scan on inner_example + Filter: (something_else > 100)