Skip to content

Commit 5d72657

Browse files
committed
clean up debug flags.
1 parent b3c7ad5 commit 5d72657

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

src/backend/tcop/postgres.c

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.132 1999/10/08 04:28:45 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.133 1999/10/08 05:27:14 momjian Exp $
1111
*
1212
* NOTES
1313
* 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[])
10231023
if (DebugLvl >= 2)
10241024
DebugPrintQuery = true;
10251025
if (DebugLvl >= 3)
1026-
DebugPrintQuery = true ;
1027-
if (DebugLvl >= 4)
1028-
{
10291026
DebugPrintParse = true;
1027+
if (DebugLvl >= 4)
10301028
DebugPrintPlan = true;
1031-
DebugPrintRewrittenParsetree = true;
1032-
}
10331029
if (DebugLvl >= 5)
1034-
{
1035-
DebugPPrintParse = true;
1036-
DebugPPrintPlan = true;
10371030
DebugPPrintRewrittenParsetree = true;
1038-
}
10391031
break;
10401032

10411033
case 'E':
@@ -1508,7 +1500,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
15081500
if (!IsUnderPostmaster)
15091501
{
15101502
puts("\nPOSTGRES backend interactive interface ");
1511-
puts("$Revision: 1.132 $ $Date: 1999/10/08 04:28:45 $\n");
1503+
puts("$Revision: 1.133 $ $Date: 1999/10/08 05:27:14 $\n");
15121504
}
15131505

15141506
/*

0 commit comments

Comments
 (0)