diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-03-09 19:52:36 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-03-09 19:52:36 +0900 |
commit | 096bbf7c934a4288c9e48a6ac8e91d8753ac1ccd (patch) | |
tree | 2d86b33d88c6af53b051437b666506db8ce41ed8 /contrib/postgres_fdw/sql/postgres_fdw.sql | |
parent | ff99918c625a84c91e7391db9032112ec8653623 (diff) | |
download | postgresql-096bbf7c934a4288c9e48a6ac8e91d8753ac1ccd.tar.gz postgresql-096bbf7c934a4288c9e48a6ac8e91d8753ac1ccd.zip |
Switch back sslcompression to be a normal input field in libpq
Per buildfarm member crake, any servers including a postgres_fdw server
with this option set would fail to do a pg_upgrade properly as the
option got hidden in f9264d1 by becoming a debug option, making the
restore of the FDW server fail.
This changes back the option in libpq to be visible, but still inactive
to fix this upgrade issue.
Discussion: https://postgr.es/m/YEbq15JKJwIX+S6m@paquier.xyz
Diffstat (limited to 'contrib/postgres_fdw/sql/postgres_fdw.sql')
-rw-r--r-- | contrib/postgres_fdw/sql/postgres_fdw.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/postgres_fdw/sql/postgres_fdw.sql b/contrib/postgres_fdw/sql/postgres_fdw.sql index a143a704064..be5618f7592 100644 --- a/contrib/postgres_fdw/sql/postgres_fdw.sql +++ b/contrib/postgres_fdw/sql/postgres_fdw.sql @@ -181,6 +181,7 @@ ALTER SERVER testserver1 OPTIONS ( sslcert 'value', sslkey 'value', sslrootcert 'value', + sslcompression 'value', sslcrl 'value', --requirepeer 'value', krbsrvname 'value', |