We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4736a commit 556e721Copy full SHA for 556e721
src/bin/pg_ctl/pg_ctl.c
@@ -4,7 +4,7 @@
4
*
5
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
6
7
- * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.49 2004/12/06 01:09:20 neilc Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.50 2004/12/21 17:38:01 momjian Exp $
8
9
*-------------------------------------------------------------------------
10
*/
@@ -582,7 +582,10 @@ do_start(void)
582
print_msg(_("waiting for postmaster to start..."));
583
584
if (test_postmaster_connection() == false)
585
+ {
586
printf(_("could not start postmaster\n"));
587
+ exit(1);
588
+ }
589
else
590
{
591
print_msg(_(" done\n"));
0 commit comments