If there is no table in RangeTable for colname then

elog (WARN, "attribute %s not found", colname);
This commit is contained in:
Vadim B. Mikheev 1997-05-31 07:10:25 +00:00
parent 139858e699
commit ad01dd270d
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.15 1997/03/12 20:47:57 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.16 1997/05/31 07:10:25 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@ -771,6 +771,8 @@ checkTargetTypes(ParseState *pstate, char *target_colname,
rte = refnameRangeTableEntry(pstate->p_rtable, refname);
else {
rte = colnameRangeTableEntry(pstate, colname);
if ( rte == (RangeTblEntry *) NULL )
elog (WARN, "attribute %s not found", colname);
refname = rte->refname;
}