From 2f0d43b251f5bfc257d45835965861202fcd263b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 28 Jan 2004 21:02:40 +0000 Subject: Review uses of IsUnderPostmaster, change some tests to look at whereToSendOutput instead because they are really inquiring about the correct client communication protocol. Update some comments. This is pointing towards supporting regular FE/BE client protocol in a standalone backend, per discussion a month or so back. --- src/backend/tcop/postgres.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 2a40b34261e..4f62112714b 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.386 2004/01/26 22:59:53 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.387 2004/01/28 21:02:40 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -392,7 +392,7 @@ ReadCommand(StringInfo inBuf) { int result; - if (IsUnderPostmaster) + if (whereToSendOutput == Remote) result = SocketBackend(inBuf); else result = InteractiveBackend(inBuf); @@ -2627,8 +2627,8 @@ PostgresMain(int argc, char *argv[], const char *username) /* Need not flush since ReadyForQuery will do it. */ } - /* Welcome banner for non-frontend case */ - if (!IsUnderPostmaster) + /* Welcome banner for standalone case */ + if (whereToSendOutput == Debug) printf("\nPostgreSQL stand-alone backend %s\n", PG_VERSION); /* -- cgit v1.2.3