diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
commit | 8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch) | |
tree | f6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/backend/tcop/postgres.c | |
parent | 1efa3f42280fce080e47fc4491a809240cbe464a (diff) | |
download | postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.tar.gz postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.zip |
From: Tatsuo Ishii <t-ishii@sra.co.jp>
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.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 14 |
1 files changed, 7 insertions, 7 deletions
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"); } /* ---------------- |