From 2cf57c8f8d060711c1ad7e1dd6cc1115a2839b47 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 6 May 2003 00:20:33 +0000 Subject: Implement feature of new FE/BE protocol whereby RowDescription identifies the column by table OID and column number, if it's a simple column reference. Along the way, get rid of reskey/reskeyop fields in Resdoms. Turns out that representation was not convenient for either the planner or the executor; we can make the planner deliver exactly what the executor wants with no more effort. initdb forced due to change in stored rule representation. --- src/include/parser/parse_target.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/parser/parse_target.h') diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h index b89ed3a30d..880673800a 100644 --- a/src/include/parser/parse_target.h +++ b/src/include/parser/parse_target.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_target.h,v 1.29 2003/02/13 05:53:46 momjian Exp $ + * $Id: parse_target.h,v 1.30 2003/05/06 00:20:33 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -18,6 +18,7 @@ extern List *transformTargetList(ParseState *pstate, List *targetlist); +extern void markTargetListOrigins(ParseState *pstate, List *targetlist); extern TargetEntry *transformTargetEntry(ParseState *pstate, Node *node, Node *expr, char *colname, bool resjunk); -- cgit v1.2.1