You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
PostgreSQL disabled compression as ofe3bdb2d and the documentationrecommends against using it since. Additionally, SSL compression hasbeen disabled in OpenSSL since version 1.1.0, and was disabled in manydistributions long before that. The most recent TLS version, TLSv1.3,disallows compression at the protocol level.This commit removes the feature itself, removing support for the libpqparameter sslcompression (parameter still listed for compatibilityreasons with existing connection strings, just ignored), and removesthe equivalent field in pg_stat_ssl and de facto PgBackendSSLStatus.Note that, on top of removing the ability to activate compression byconfiguration, compression is actively disabled in both frontend andbackend to avoid overrides from local configurations.A TAP test is added for deprecated SSL parameters to check afterbackwards compatibility.Bump catalog version.Author: Daniel GustafssonReviewed-by: Peter Eisentraut, Magnus Hagander, Michael PaquierDiscussion:https://postgr.es/m/7E384D48-11C5-441B-9EC3-F7DB1F8518F6@yesql.se