diff --git a/doc/src/sgml/release-9.5.sgml b/doc/src/sgml/release-9.5.sgml index 98aef4f9fe..d4a49cc380 100644 --- a/doc/src/sgml/release-9.5.sgml +++ b/doc/src/sgml/release-9.5.sgml @@ -35,6 +35,31 @@ + + Clear the OpenSSL error queue before OpenSSL calls, rather than + assuming it's clear already; and make sure we leave it clear + (Peter Geoghegan, Dave Vitek, Peter Eisentraut) + + + + This avoids problems when there are multiple connections using + OpenSSL within a single process and not all the code involved + follows the same rules for when to clear the error queue. + While the problem is worse for libpq, it's + possible for it to arise within the server as well. + + + + + + + Fix pg_upgrade to not fail when new-cluster TOAST rules + differ from old (Tom Lane) + + + + pg_upgrade had special-case code to handle the + situation where the new PostgreSQL version thinks that + a table should have a TOAST table while the old version did not. That + code was broken, so remove it; there seems no reason to believe that we + can't get along fine without a TOAST table if that was okay according + to the old version's rules. + + + + + - - Clear the OpenSSL error queue before OpenSSL calls, rather than - assuming it's clear already; and make sure we leave it clear - (Peter Geoghegan, Dave Vitek, Peter Eisentraut) - - - - This avoids problems when there are multiple connections using - OpenSSL within a single process and not all the code involved - follows the same rules for when to clear the error queue. - While the problem is worse for libpq, it's - possible for it to arise within the server as well. - - -