aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/lsyscache.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1999-02-21 03:49:55 +0000
committerMarc G. Fournier <scrappy@hub.org>1999-02-21 03:49:55 +0000
commit8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch)
treef6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/backend/utils/cache/lsyscache.c
parent1efa3f42280fce080e47fc4491a809240cbe464a (diff)
downloadpostgresql-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/utils/cache/lsyscache.c')
-rw-r--r--src/backend/utils/cache/lsyscache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c
index 335d98915e9..54c930173ce 100644
--- a/src/backend/utils/cache/lsyscache.c
+++ b/src/backend/utils/cache/lsyscache.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.24 1999/02/13 23:19:42 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.25 1999/02/21 03:49:33 scrappy Exp $
*
* NOTES
* Eventually, the index information should go through here, too.
@@ -217,7 +217,7 @@ get_opname(Oid opno)
else
{
/* don't throw an error anymore; we want to continue... */
-#if FALSE
+#ifdef NOT_USED
elog(ERROR, "can't look up operator %d\n", opno);
#endif
return NULL;