Skip to content

Commit d75edab

Browse files
committed
Fix psql's \connect command some more.
Jasen Betts reported yet another unintended side effect of commit 85c5428: reconnecting with "\c service=whatever" did not have the expected results. The reason is that starting from the output of PQconndefaults() effectively allows environment variables (such as PGPORT) to override entries in the service file, whereas the normal priority is the other way around. Not using PQconndefaults at all would require yet a third main code path in do_connect's parameter setup, so I don't really want to fix it that way. But we can have the logic effectively ignore all the default values for just a couple more lines of code. This patch doesn't change the behavior for "\c -reuse-previous=on service=whatever". That remains significantly different from before 85c5428, because many more parameters will be re-used, and thus not be possible for service entries to replace. But I think this is (mostly?) intentional. In any case, since libpq does not report where it got parameter values from, it's hard to do differently. Per bug #16936 from Jasen Betts. As with the previous patches, back-patch to all supported branches. (9.5 is unfortunately now out of support, so this won't get fixed there.) Discussion: https://postgr.es/m/16936-3f524322a53a29f0@postgresql.org
1 parent 16568c0 commit d75edab

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/bin/psql/command.c

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2969,6 +2969,25 @@ do_connect(enum trivalue reuse_previous_specification,
29692969
if (strcmp(replci->keyword, "password") == 0)
29702970
have_password = true;
29712971
}
2972+
else if (!reuse_previous)
2973+
{
2974+
/*
2975+
* When we have a connstring and are not re-using
2976+
* parameters, swap *all* entries, even those not set
2977+
* by the connstring. This avoids absorbing
2978+
* environment-dependent defaults from the result of
2979+
* PQconndefaults(). We don't want to do that because
2980+
* they'd override service-file entries if the
2981+
* connstring specifies a service parameter, whereas
2982+
* the priority should be the other way around. libpq
2983+
* can certainly recompute any defaults we don't pass
2984+
* here. (In this situation, it's a bit wasteful to
2985+
* have called PQconndefaults() at all, but not doing
2986+
* so would require yet another major code path here.)
2987+
*/
2988+
replci->val = ci->val;
2989+
ci->val = NULL;
2990+
}
29722991
}
29732992
Assert(ci->keyword == NULL && replci->keyword == NULL);
29742993

0 commit comments

Comments
 (0)