]> granicus.if.org Git - postgresql/commitdiff
Remove unused Choose node.
authorBruce Momjian <bruce@momjian.us>
Sat, 23 Jan 1999 23:28:09 +0000 (23:28 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 23 Jan 1999 23:28:09 +0000 (23:28 +0000)
src/backend/optimizer/plan/setrefs.c
src/include/nodes/plannodes.h

index dc04e3c5c3d50cac9569c2945abf5f30480e1c86..dd8b70a6cb7e748832726e94606c7e73b1ef3998 100644 (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));
-       }
 }
 
 /*
index f0b8ecbb6714f25358e36fc87bbab9dc5d1ce8ac..d652a48f6bf86b370fe21e8f7d608989434a3caa 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: plannodes.h,v 1.19 1998/11/22 10:45:09 vadim Exp $
+ * $Id: plannodes.h,v 1.20 1999/01/23 23:28:09 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -328,16 +328,6 @@ typedef struct Hash
        int                     hashtablesize;
 } Hash;
 
-/* ---------------------
- *             choose node
- * ---------------------
- */
-typedef struct Choose
-{
-       Plan            plan;
-       List       *chooseplanlist;
-} Choose;
-
 /* -------------------
  *             Tee node information
  *