diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2002-04-02 08:51:52 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2002-04-02 08:51:52 +0000 |
commit | c26a44db08677bccc04426b42973bb372e6e3046 (patch) | |
tree | bbea51ec6e6036abcf25db88235010ecdf67b384 /src/backend/optimizer/prep/preptlist.c | |
parent | b4bedfa956a32bd4fcb56822d3c09f72762cccce (diff) |
Removed obsolete DROP_COLUMN_HACK stuff.
Diffstat (limited to 'src/backend/optimizer/prep/preptlist.c')
-rw-r--r-- | src/backend/optimizer/prep/preptlist.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/optimizer/prep/preptlist.c b/src/backend/optimizer/prep/preptlist.c index 8fb1426748f..324674a5834 100644 --- a/src/backend/optimizer/prep/preptlist.c +++ b/src/backend/optimizer/prep/preptlist.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.50 2002/03/20 19:44:15 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.51 2002/04/02 08:51:51 inoue Exp $ * *------------------------------------------------------------------------- */ @@ -198,11 +198,6 @@ expand_targetlist(List *tlist, int command_type, new_expr = build_column_default(rel, attrno); break; case CMD_UPDATE: -#ifdef _DROP_COLUMN_HACK__ - if (COLUMN_IS_DROPPED(att_tup)) - new_expr = (Node *) makeNullConst(atttype); - else -#endif /* _DROP_COLUMN_HACK__ */ new_expr = (Node *) makeVar(result_relation, attrno, atttype, |