From: Bruce Momjian Date: Wed, 17 Jun 2026 23:33:35 +0000 (-0400) Subject: doc PG 19 relnotes: mention pg_dump{all} & standard_conforming_strings X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62c09cdc16757da93c373a197ec51a52b14bc2b3;p=thirdparty%2Fpostgresql.git doc PG 19 relnotes: mention pg_dump{all} & standard_conforming_strings Dumps will fail if standard_conforming_strings = off. Reported-by: Tom Lane Backpatch-through: 1131492.1781717349@sss.pgh.pa.us --- diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml index 285bfa123f6..911a198e676 100644 --- a/doc/src/sgml/release-19.sgml +++ b/doc/src/sgml/release-19.sgml @@ -109,7 +109,14 @@ Force standard_conformi -Server variable escape_string_warning has been removed as unnecessary. Client applications still support escape_string_warning = off for compatibility with old servers. +Dumps created using pre-PostgreSQL 19 versions of pg_dump +or pg_dumpall, and using standard_conforming_strings = off, +will not properly load into PostgreSQL 19 and later servers. Users should create dumps using PostgreSQL 19 +or later versions of these applications, or use standard_conforming_strings = on. + + + +Client applications still support escape_string_warning = off for compatibility with old servers. The server variable escape_string_warning has been removed as unnecessary.