diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-28 21:02:40 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-28 21:02:40 +0000 |
commit | 2f0d43b251f5bfc257d45835965861202fcd263b (patch) | |
tree | 257546d7fbd03c9ae8eae54cb6eb5fb2995653d9 /src/backend/tcop/postgres.c | |
parent | b3ead7c045382b5942b345239499bab0adcaef78 (diff) | |
download | postgresql-2f0d43b251f5bfc257d45835965861202fcd263b.tar.gz postgresql-2f0d43b251f5bfc257d45835965861202fcd263b.zip |
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.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 8 |
1 files changed, 4 insertions, 4 deletions
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); /* |