aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts/pg_isready.c
Commit message (Collapse)AuthorAge
* Fix PQconninfoParse error message handlingPeter Eisentraut2013-07-15
| | | | | The returned error message already includes a newline, but the callers were adding their own when printing it out.
* pg_isready: Message improvementPeter Eisentraut2013-07-14
|
* pg_isready: Make --help output more consistent with other utilitiesPeter Eisentraut2013-07-07
|
* Fix pg_isready to handle conninfo properly.Fujii Masao2013-06-11
| | | | | | | | | | pg_isready displays the host name and the port number that it uses to connect to the server. So far, pg_isready didn't use the conninfo specified in -d option for calculating those host name and port number. This can lead to wrong display to a user. This commit changes pg_isready so that it uses the conninfo for that calculation. Original patch by Phil Sorber, modified by me.
* pgindent run for release 9.3Bruce Momjian2013-05-29
| | | | | This is the first run of the Perl-based pgindent script. Also update pgindent instructions.
* Make it easy to time out pg_isready, and make the default 3 seconds.Robert Haas2013-01-25
| | | | | | Along the way, add a missing line to the help message. Phil Sorber, reviewed by Fujii Masao
* pg_isreadyRobert Haas2013-01-23
New command-line utility to test whether a server is ready to accept connections. Phil Sorber, reviewed by Michael Paquier and Peter Eisentraut