diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-01 03:03:05 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-01 03:03:05 +0000 |
commit | 80c6847cc59cb5deecb014fa6ecfd2d2dd7c45ed (patch) | |
tree | b123ed15b33425ca0ec89aefdcff050bdd471790 /src/include/nodes/relation.h | |
parent | 6c33054a0c4a05a185821fba1b82d3eda195b769 (diff) | |
download | postgresql-80c6847cc59cb5deecb014fa6ecfd2d2dd7c45ed.tar.gz postgresql-80c6847cc59cb5deecb014fa6ecfd2d2dd7c45ed.zip |
Desultory de-FastList-ification. RelOptInfo.reltargetlist is back to
being a plain List.
Diffstat (limited to 'src/include/nodes/relation.h')
-rw-r--r-- | src/include/nodes/relation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 87d9f5964e2..91114fb03b7 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/relation.h,v 1.94 2004/04/25 18:23:57 neilc Exp $ + * $PostgreSQL: pgsql/src/include/nodes/relation.h,v 1.95 2004/06/01 03:03:05 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -186,7 +186,7 @@ typedef struct RelOptInfo int width; /* estimated avg width of result tuples */ /* materialization information */ - FastList reltargetlist; + List *reltargetlist; /* needed Vars */ List *pathlist; /* Path structures */ struct Path *cheapest_startup_path; struct Path *cheapest_total_path; |