1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Remove unused Choose node.

This commit is contained in:
Bruce Momjian
1999-01-23 23:28:09 +00:00
parent e6725d1574
commit 598a4e15dd
2 changed files with 2 additions and 19 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/setrefs.c,v 1.30 1999/01/18 00:09:48 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/setrefs.c,v 1.31 1999/01/23 23:28:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -82,13 +82,6 @@ set_tlist_references(Plan *plan)
set_result_tlist_references((Result *) plan);
else if (IsA(plan, Hash))
set_tlist_references(plan->lefttree);
else if (IsA(plan, Choose))
{
List *x;
foreach(x, ((Choose *) plan)->chooseplanlist)
set_tlist_references((Plan *) lfirst(x));
}
}
/*