1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Changes for GROUP BY func_results:

AddGroupAttrToTlist() is not called from anywhere now.
This commit is contained in:
Vadim B. Mikheev
1997-04-05 06:39:58 +00:00
parent c50d8474d3
commit d12e27a5f3

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/tlist.c,v 1.1.1.1 1996/07/09 06:21:39 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/optimizer/util/tlist.c,v 1.2 1997/04/05 06:39:58 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -266,6 +266,9 @@ match_varid(Var *test_var, List *tlist)
entry = lfirst(tl); entry = lfirst(tl);
tlvar = get_expr(entry); tlvar = get_expr(entry);
if ( !IsA (tlvar, Var) )
continue;
/* /*
* we test the original varno (instead of varno which might * we test the original varno (instead of varno which might
@ -532,6 +535,7 @@ get_expr(TargetEntry *tle)
void void
AddGroupAttrToTlist(List *tlist, List *grpCl) AddGroupAttrToTlist(List *tlist, List *grpCl)
{ {
#if 0
List *gl; List *gl;
int last_resdomno = length(tlist) + 1; int last_resdomno = length(tlist) + 1;
@ -553,6 +557,7 @@ AddGroupAttrToTlist(List *tlist, List *grpCl)
tlist = lappend(tlist, MakeTLE(r, (Node*)var)); tlist = lappend(tlist, MakeTLE(r, (Node*)var));
} }
} }
#endif
} }
/* was ExecTargetListLength() in execQual.c, /* was ExecTargetListLength() in execQual.c,