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/parser/parse_relation.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/parser/parse_relation.c')
-rw-r--r-- | src/backend/parser/parse_relation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_relation.c b/src/backend/parser/parse_relation.c index 9f40bcb3171..3388edb3379 100644 --- a/src/backend/parser/parse_relation.c +++ b/src/backend/parser/parse_relation.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_relation.c,v 1.17 1999/02/13 23:17:10 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_relation.c,v 1.18 1999/02/21 03:49:03 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -438,7 +438,7 @@ checkTargetTypes(ParseState *pstate, char *target_colname, resdomno_target = attnameAttNum(pstate->p_target_relation, target_colname); attrtype_target = attnumTypeId(pstate->p_target_relation, resdomno_target); -#if FALSE +#ifdef NOT_USED if ((attrtype_id != attrtype_target) || (get_atttypmod(rte->relid, resdomno_id) != get_atttypmod(pstate->p_target_relation->rd_id, resdomno_target))) |