From 8c3e8a8a0e432b709ad45b452612f744bacf1514 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Sun, 21 Feb 1999 03:49:55 +0000 Subject: From: Tatsuo Ishii Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical. --- src/backend/tcop/postgres.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 772a59b7c22..8185b77f5d7 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.103 1999/02/18 06:00:49 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.104 1999/02/21 03:49:27 scrappy Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -74,19 +74,19 @@ #include "utils/ps_status.h" #include "utils/temprel.h" -#if FALSE +#ifdef NOT_USED #include "nodes/relation.h" #endif -#if 0 +#ifdef NOT_USED #include "optimizer/xfunc.h" #endif -#if FALSE +#ifdef NOT_USED #include "nodes/plannodes.h" #endif -#if FALSE +#ifdef NOT_USED #include "nodes/memnodes.h" #endif @@ -1267,7 +1267,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) break; case 'x': -#if 0 /* planner/xfunc.h */ +#ifdef NOT_USED /* planner/xfunc.h */ /* * control joey hellerstein's expensive function @@ -1522,7 +1522,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.103 $ $Date: 1999/02/18 06:00:49 $\n"); + puts("$Revision: 1.104 $ $Date: 1999/02/21 03:49:27 $\n"); } /* ---------------- -- cgit v1.2.3