diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-08 01:10:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-08 01:10:21 +0000 |
commit | 02b1a7fd5160d4117973527dc6d4214cd225a97c (patch) | |
tree | 47cc4a70b26f65537003f4ee5404866a45087571 /src/backend/utils/adt/sets.c | |
parent | 6b9f94022c481fdcde45d491b61eddb414454aea (diff) | |
download | postgresql-02b1a7fd5160d4117973527dc6d4214cd225a97c.tar.gz postgresql-02b1a7fd5160d4117973527dc6d4214cd225a97c.zip |
Clean up some confusion about where and how to set whereToSendOutput.
We will no longer try to send elog messages to the client before we have
initialized backend libpq (oops); however, reporting bogus commandline
switches via elog does work now (not irrelevant, because of PGOPTIONS).
Fix problem with inappropriate sending of checkpoint-process messages
to stderr.
Diffstat (limited to 'src/backend/utils/adt/sets.c')
-rw-r--r-- | src/backend/utils/adt/sets.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/backend/utils/adt/sets.c b/src/backend/utils/adt/sets.c index c48526a7ba1..922dc5a2b1e 100644 --- a/src/backend/utils/adt/sets.c +++ b/src/backend/utils/adt/sets.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/sets.c,v 1.37 2001/03/22 03:59:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/sets.c,v 1.38 2001/09/08 01:10:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -26,8 +26,6 @@ #include "utils/sets.h" #include "utils/syscache.h" -extern CommandDest whereToSendOutput; /* defined in tcop/postgres.c */ - /* * SetDefine - converts query string defining set to an oid @@ -65,8 +63,7 @@ SetDefine(char *querystr, char *typename) 0, /* perbyte_cpu */ 0, /* percall_cpu */ 100, /* outin_ratio */ - NIL, /* argList */ - whereToSendOutput); + NIL); /* argList */ /* * Since we're still inside this command of the transaction, we can't |