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/utils/cache/relcache.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/backend/utils/cache/relcache.c') diff --git a/src/backend/utils/cache/relcache.c b/src/backend/utils/cache/relcache.c index c9d008a055..464d94021a 100644 --- a/src/backend/utils/cache/relcache.c +++ b/src/backend/utils/cache/relcache.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.58 1999/02/13 23:19:44 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.59 1999/02/21 03:49:36 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -235,7 +235,7 @@ do { \ static void formrdesc(char *relationName, u_int natts, FormData_pg_attribute *att); -#if 0 /* See comments at line 1304 */ +#ifdef NOT_USED /* See comments at line 1304 */ static void RelationFlushIndexes(Relation *r, Oid accessMethodId); #endif @@ -1298,7 +1298,7 @@ RelationFlushRelation(Relation *relationPtr, FreeTriggerDesc(relation); -#if 0 +#ifdef NOT_USED if (relation->rd_rules) { int j; @@ -1427,7 +1427,7 @@ RelationFlushIndexes(Relation *r, void RelationIdInvalidateRelationCacheByAccessMethodId(Oid accessMethodId) { -#if 0 +#ifdef NOT_USED /* * 25 aug 1992: mao commented out the ht walk below. it should be -- cgit v1.2.1