diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-10-08 05:27:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-10-08 05:27:14 +0000 |
commit | 5d72657732e66b5302c4c17efa98598edb4f88ca (patch) | |
tree | 15ec80bad8af592717b5be047f924840848792b5 /src/backend/tcop/postgres.c | |
parent | b3c7ad57502815923c9296f189040b659f5370d6 (diff) | |
download | postgresql-5d72657732e66b5302c4c17efa98598edb4f88ca.tar.gz postgresql-5d72657732e66b5302c4c17efa98598edb4f88ca.zip |
clean up debug flags.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index df29c31f83c..8355287f97c 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.132 1999/10/08 04:28:45 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.133 1999/10/08 05:27:14 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1023,19 +1023,11 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (DebugLvl >= 2) DebugPrintQuery = true; if (DebugLvl >= 3) - DebugPrintQuery = true ; - if (DebugLvl >= 4) - { DebugPrintParse = true; + if (DebugLvl >= 4) DebugPrintPlan = true; - DebugPrintRewrittenParsetree = true; - } if (DebugLvl >= 5) - { - DebugPPrintParse = true; - DebugPPrintPlan = true; DebugPPrintRewrittenParsetree = true; - } break; case 'E': @@ -1508,7 +1500,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.132 $ $Date: 1999/10/08 04:28:45 $\n"); + puts("$Revision: 1.133 $ $Date: 1999/10/08 05:27:14 $\n"); } /* |