]> granicus.if.org Git - postgresql/commit
Rewrite PQping to be more like what we agreed to last week.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 27 Nov 2010 06:30:34 +0000 (01:30 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 27 Nov 2010 06:30:34 +0000 (01:30 -0500)
commitdb96e1ccfcb8f3514eef931bea9435974ec7ad28
treea036fbf566b7032289193f1e856fb5fa2a6564ba
parentbe3b666eb810089fd9a1d42e3888be52ab9ddb63
Rewrite PQping to be more like what we agreed to last week.

Basically, we want to distinguish all cases where the connection was
not made from those where it was.  A convenient proxy for this is to
see if we got a message with a SQLSTATE code back from the postmaster.
This presumes that the postmaster will always send us a SQLSTATE in
a failure message, which is true for 7.4 and later postmasters in
every case except fork failure.  (We could possibly complicate the
postmaster code to do something about that, but it seems not worth
the trouble, especially since pg_ctl's response for that case should
be to keep waiting anyway.)

If we did get a SQLSTATE from the postmaster, there are basically only
two cases, as per last week's discussion: ERRCODE_CANNOT_CONNECT_NOW
and everything else.  Any other error code implies that the postmaster
is in principle willing to accept connections, it just didn't like or
couldn't handle this particular request.  We want to make a special
case for ERRCODE_CANNOT_CONNECT_NOW so that "pg_ctl start -w" knows
it should keep waiting.

In passing, pick names for the enum constants that are a tad less
likely to present collision hazards in future.
doc/src/sgml/libpq.sgml
src/bin/pg_ctl/pg_ctl.c
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-protocol3.c
src/interfaces/libpq/libpq-fe.h
src/interfaces/libpq/libpq-int.h