From 0725913982e5e06895a32a9eeea2c59a13978927 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 11 Jun 2021 19:51:35 -0400 Subject: [PATCH] docs: fix incorrect indenting in PG 14 relnotes --- doc/src/sgml/release-14.sgml | 130 +++++++++++++++++------------------ 1 file changed, 65 insertions(+), 65 deletions(-) diff --git a/doc/src/sgml/release-14.sgml b/doc/src/sgml/release-14.sgml index a2ad120cef4..21659bd184d 100644 --- a/doc/src/sgml/release-14.sgml +++ b/doc/src/sgml/release-14.sgml @@ -170,12 +170,12 @@ Author: Bruce Momjian Values - 1/0/no-verify + 1/0/no-verify are no longer supported; only the strings - verify-ca and verify-full + verify-ca and verify-full can be used. Also, disallow verify-ca if cert authentication is enabled since cert requires - verify-full checking. + verify-full checking. @@ -230,7 +230,7 @@ Author: Peter Eisentraut - EXTRACT(date) now throws an error for units + EXTRACT(date) now throws an error for units that are not part of the date data type. @@ -261,7 +261,7 @@ Author: Peter Eisentraut Prevent 's function - normal_rand() from accepting negative values + normal_rand() from accepting negative values (Ashutosh Bapat) @@ -296,14 +296,14 @@ Author: Tom Lane Remove factorial operators ! and - !! (Mark Dilger) + !! (Mark Dilger) The factorial() function is still supported. Also remove function - numeric_fac(). + numeric_fac(). @@ -335,8 +335,8 @@ Author: Tom Lane - pg_dump and - pg_upgrade will warn if postfix operators + pg_dump and + pg_upgrade will warn if postfix operators are being dumped. @@ -371,7 +371,7 @@ Author: Tom Lane For example, disregard ^ in its expansion in - \1 in (^\d+).*\1. + \1 in (^\d+).*\1. @@ -400,7 +400,7 @@ Author: Tom Lane Require custom server variable names to match the pattern used for unquoted - SQL identifiers (Tom Lane) + SQL identifiers (Tom Lane) @@ -414,12 +414,12 @@ Author: Peter Geoghegan Remove server variable - vacuum_cleanup_index_scale_factor (Peter Geoghegan) + vacuum_cleanup_index_scale_factor (Peter Geoghegan) This setting was ignored starting in - PostgreSQL version 13.3. + PostgreSQL version 13.3. @@ -451,7 +451,7 @@ Author: Tom Lane Pass doubled quote marks in - SQL command strings literally (Tom Lane) + SQL command strings literally (Tom Lane) @@ -469,7 +469,7 @@ Author: Peter Eisentraut Disallow single-quoting of the language name in the - CREATE/DROP + CREATE/DROP LANGUAGE command (Peter Eisentraut) @@ -511,7 +511,7 @@ Author: Tom Lane This was needed for warning applications about - PostgreSQL 9.5 changes. + PostgreSQL 9.5 changes. @@ -523,9 +523,9 @@ Author: Tom Lane Changes - Below you will find a detailed account of the changes between - PostgreSQL 14 and the previous major - release. + Below you will find a detailed account of the changes between + PostgreSQL 14 and the previous major + release. @@ -635,7 +635,7 @@ Author: Noah Misch Previously tuples whose insertion would have exceeded the page's - fill factor were instead + fill factor were instead added to new pages. @@ -648,7 +648,7 @@ Author: Peter Eisentraut Add Set Server Name Indication (SNI) for - SSL connection packets (Peter Eisentraut) + SSL connection packets (Peter Eisentraut) @@ -742,7 +742,7 @@ Author: Michael Paquier - VACUUM + VACUUM now has a PROCESS_TOAST which can be set to false to disable TOAST processing, and vacuumdb @@ -804,7 +804,7 @@ Author: Alvaro Herrera --> - Autovacuum now analyzes + Autovacuum now analyzes partitioned tables (Yuzuko Hosoya, Álvaro Herrera) @@ -978,7 +978,7 @@ Author: Tom Lane Allow SP-GiST to use - INCLUDE'd columns (Pavel Borisov) + INCLUDE'd columns (Pavel Borisov) @@ -1060,7 +1060,7 @@ Author: David Rowley Previously a sequential scan was required for non-equality - TID specifications. + TID specifications. @@ -1302,10 +1302,10 @@ Author: Alvaro Herrera If server variable is enabled, display the query id in pg_stat_activity, - EXPLAIN + EXPLAIN VERBOSE, csvlog, and optionally in - (Julien Rouhaud) + (Julien Rouhaud) @@ -1506,7 +1506,7 @@ Author: Fujii Masao Make the archiver process visible in - pg_stat_activity (Kyotaro Horiguchi) + pg_stat_activity (Kyotaro Horiguchi) @@ -1960,7 +1960,7 @@ Author: Amit Kapila The output functions begin with stream. - test_decoding also supports these. + test_decoding also supports these. @@ -1984,7 +1984,7 @@ Author: Amit Kapila Immediately WAL-log subtransaction and top-level - XID association (Tomas Vondra, Dilip Kumar, Amit + XID association (Tomas Vondra, Dilip Kumar, Amit Kapila) @@ -2047,7 +2047,7 @@ Author: Amit Kapila This allows logical decoding to work efficiently in presence of a large amount of - DDL. + DDL. @@ -2124,13 +2124,13 @@ Author: Peter Eisentraut Allow an alias to be specified for JOIN's - USING clause (Peter Eisentraut) + USING clause (Peter Eisentraut) The alias is created by using AS after the - USING clause and represents an alias for the - USING columns. + USING clause and represents an alias for the + USING columns. @@ -2149,7 +2149,7 @@ Author: Tomas Vondra For example, GROUP BY CUBE (a,b), CUBE (b,c) will generate duplicate grouping combinations without - DISTINCT. + DISTINCT. @@ -2283,7 +2283,7 @@ Author: Tom Lane Previously non-function call - SQL standard syntax, e.g. SQL standard syntax, e.g. EXTRACT, were converted to non-SQL standard function calls. @@ -2435,7 +2435,7 @@ Author: Alexander Korotkov - JSONB subscripting can be used to extract and assign + JSONB subscripting can be used to extract and assign to portions of JSONB documents. @@ -2513,7 +2513,7 @@ Author: Tom Lane The previous limit was 4k bytes. Also remove function - t_readline(). + t_readline(). @@ -2601,7 +2601,7 @@ Author: Tom Lane Allow binary data transfer to be more forgiving of array and record - OID mismatches (Tom Lane) + OID mismatches (Tom Lane) @@ -2636,7 +2636,7 @@ Author: Peter Eisentraut Allow SQL-language functions and procedures to use - SQL-standard function bodies (Peter Eisentraut) + SQL-standard function bodies (Peter Eisentraut) @@ -2655,7 +2655,7 @@ Author: Peter Eisentraut Allow procedures to have - OUT parameters (Peter Eisentraut) + OUT parameters (Peter Eisentraut) @@ -2673,12 +2673,12 @@ Author: Tom Lane The functions are array_append(), - array_prepend(), - array_cat(), - array_position(), - array_positions(), - array_remove(), - array_replace(), and array_prepend(), + array_cat(), + array_position(), + array_positions(), + array_remove(), + array_replace(), and width_bucket(). Previously only identical data types could be used. @@ -2847,7 +2847,7 @@ Author: Peter Eisentraut The new syntax is SUBSTRING(text SIMILAR pattern ESCAPE escapechar). The previous standard syntax was - SUBSTRING(text FROM pattern FOR escapechar), + SUBSTRING(text FROM pattern FOR escapechar), and is still supported by Postgres. @@ -2904,7 +2904,7 @@ Author: Tom Lane Cause exp() and - power() for negative-infinity exponents to + power() for negative-infinity exponents to return zero (Tom Lane) @@ -2971,8 +2971,8 @@ Author: Michael Paquier Change pg_describe_object(), - pg_identify_object(), and - pg_identify_object_as_address() to always report + pg_identify_object(), and + pg_identify_object_as_address() to always report helpful error messages for non-existent objects (Michael Paquier) @@ -3074,8 +3074,8 @@ Author: Tom Lane New options are read-only, - primary, standby, and - prefer-standby. + primary, standby, and + prefer-standby. @@ -3166,7 +3166,7 @@ Author: Michael Paquier The options are and - . + . @@ -3196,7 +3196,7 @@ Author: Dean Rasheed Add pgbench - permute() function to randomly shuffle values + permute() function to randomly shuffle values (Fabien Coelho, Hironobu Suzuki, Dean Rasheed) @@ -3266,7 +3266,7 @@ Author: Tom Lane Allow psql's \dt and \di to show - TOAST tables and their indexes (Justin Pryzby) + TOAST tables and their indexes (Justin Pryzby) @@ -3303,7 +3303,7 @@ Author: Tom Lane When editing the previous query or a file with - psql's \e, or using \ef and \ev, ignore + psql's \e, or using \ef and \ev, ignore the contents if the editor exits without saving (Laurenz Albe) @@ -3446,7 +3446,7 @@ Author: Magnus Hagander Remove support for the postmaster - option (Magnus Hagander) + option (Magnus Hagander) @@ -3491,7 +3491,7 @@ Author: Peter Eisentraut With the removal of the ! operator in this release, - factorial() is the only built-in way to compute + factorial() is the only built-in way to compute a factorial. @@ -3611,7 +3611,7 @@ Author: Michael Paquier Change SHA1, SHA2, and MD5 hash computations to use the - OpenSSL EVP API + OpenSSL EVP API (Michael Paquier) @@ -3734,7 +3734,7 @@ Author: Peter Eisentraut Allow pgstattuple_approx() to report on - TOAST tables (Peter Eisentraut) + TOAST tables (Peter Eisentraut) @@ -3842,7 +3842,7 @@ Author: Bruce Momjian Move query hash computation from - pg_stat_statements to the core server + pg_stat_statements to the core server (Julien Rouhaud) @@ -3880,7 +3880,7 @@ Author: Fujii Masao Add row counts for utility commands to - pg_stat_statements> (Fujii Masao, Katsuragi + pg_stat_statements> (Fujii Masao, Katsuragi Yuta, Seino Yuki) @@ -3919,7 +3919,7 @@ Author: Tomas Vondra Allow postgres_fdw to - INSERT rows in bulk (Takayuki Tsunakawa, Tomas + INSERT rows in bulk (Takayuki Tsunakawa, Tomas Vondra, Amit Langote) @@ -3950,7 +3950,7 @@ Author: Fujii Masao Add postgres_fdw function - postgres_fdw_get_connections() to report open + postgres_fdw_get_connections() to report open foreign server connections (Bharath Rupireddy)