diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-17 18:47:09 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-17 18:47:09 +0000 |
commit | fcaad7e2c11b74c9bd30ad483b99d45a71e3f925 (patch) | |
tree | d3ccb4120ce4f2d115df852cd37ca49a3c5f87b8 /src/backend/parser/parse_relation.c | |
parent | 388ffad0401e7ebe0c44b0a4bfb85ce0ed48b294 (diff) | |
download | postgresql-fcaad7e2c11b74c9bd30ad483b99d45a71e3f925.tar.gz postgresql-fcaad7e2c11b74c9bd30ad483b99d45a71e3f925.zip |
Standardize on the assumption that the arguments of a RowExpr correspond
to the physical layout of the rowtype, ie, there are dummy arguments
corresponding to any dropped columns in the rowtype. We formerly had a
couple of places that did it this way and several others that did not.
Fixes Gaetano Mendola's "cache lookup failed for type 0" bug of 5-Aug.
Diffstat (limited to 'src/backend/parser/parse_relation.c')
-rw-r--r-- | src/backend/parser/parse_relation.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/parser/parse_relation.c b/src/backend/parser/parse_relation.c index fcec2cb39dd..3f32f8c80f5 100644 --- a/src/backend/parser/parse_relation.c +++ b/src/backend/parser/parse_relation.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/parser/parse_relation.c,v 1.96 2004/05/30 23:40:35 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/parser/parse_relation.c,v 1.97 2004/08/17 18:47:08 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -42,8 +42,6 @@ static Node *scanNameSpaceForRelid(ParseState *pstate, Node *nsnode, static void scanNameSpaceForConflict(ParseState *pstate, Node *nsnode, RangeTblEntry *rte1, const char *aliasname1); static bool isForUpdate(ParseState *pstate, char *refname); -static bool get_rte_attribute_is_dropped(RangeTblEntry *rte, - AttrNumber attnum); static int specialAttNum(const char *attname); static void warnAutoRange(ParseState *pstate, RangeVar *relation); @@ -1699,7 +1697,7 @@ get_rte_attribute_type(RangeTblEntry *rte, AttrNumber attnum, * get_rte_attribute_is_dropped * Check whether attempted attribute ref is to a dropped column */ -static bool +bool get_rte_attribute_is_dropped(RangeTblEntry *rte, AttrNumber attnum) { bool result; |