From: | Michael Paquier <michael(at)paquier(dot)xyz> |
---|---|
To: | Stephen Frost <sfrost(at)snowman(dot)net> |
Cc: | Devrim Gündüz <devrim(at)gunduz(dot)org>, PostgreSQL mailing lists <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: v12 pg_basebackup fails against older servers (take two) |
Date: | 2019-10-22 13:35:50 |
Message-ID: | 20191022133550.GA2038@paquier.xyz |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Tue, Oct 22, 2019 at 09:06:03AM -0400, Stephen Frost wrote:
> Here's just a quick rough-up of a patch (it compiles, I haven't tried it
> out more than that) that adds in a check to skip gssencmode on older
> versions. If it seems like a reasonable approach then I can test it out
> and deal with back-patching it and such.
>
> Thoughts?
Here is a thought. We could tackle the problem at its source and
track in internalPQconninfoOption the minimum version supported by a
parameter. This way, we could make sure that libpq routines similar
to PQconninfo() never return an option which is not compatible with a
a live connection, and we won't forget that if the problem shows up
again because creating a new parameter would require to add a new
version number. There is an advantage here: internalPQconninfoOption
is an internal structure, so this should be back-patchable.
--
Michael
From | Date | Subject | |
---|---|---|---|
Next Message | Stephen Frost | 2019-10-22 13:53:45 | Re: v12 pg_basebackup fails against older servers (take two) |
Previous Message | Stephen Frost | 2019-10-22 13:06:03 | Re: v12 pg_basebackup fails against older servers (take two) |