1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Cleanup Name usage.

This commit is contained in:
Bruce Momjian
1998-07-20 16:14:18 +00:00
parent 7193719b4f
commit 34797d4225
7 changed files with 48 additions and 69 deletions

View File

@ -26,7 +26,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.49 1998/07/19 03:46:29 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.50 1998/07/20 16:14:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -606,16 +606,6 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
estate->es_into_relation_descriptor = intoRelationDesc;
/* ----------------
* return the type information..
* ----------------
*/
/*
attinfo = (AttrInfo *)palloc(sizeof(AttrInfo));
attinfo->numAttr = len;
attinfo->attrs = tupType->attrs;
*/
return tupType;
}