File tree 2 files changed +2
-19
lines changed
2 files changed +2
-19
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/optimizer/plan/setrefs.c,v 1.30 1999/01/18 00:09:48 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/plan/setrefs.c,v 1.31 1999/01/23 23:28:08 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -82,13 +82,6 @@ set_tlist_references(Plan *plan)
82
82
set_result_tlist_references ((Result * ) plan );
83
83
else if (IsA (plan , Hash ))
84
84
set_tlist_references (plan -> lefttree );
85
- else if (IsA (plan , Choose ))
86
- {
87
- List * x ;
88
-
89
- foreach (x , ((Choose * ) plan )-> chooseplanlist )
90
- set_tlist_references ((Plan * ) lfirst (x ));
91
- }
92
85
}
93
86
94
87
/*
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: plannodes.h,v 1.19 1998/11/22 10:45 :09 vadim Exp $
9
+ * $Id: plannodes.h,v 1.20 1999/01/23 23:28 :09 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -328,16 +328,6 @@ typedef struct Hash
328
328
int hashtablesize ;
329
329
} Hash ;
330
330
331
- /* ---------------------
332
- * choose node
333
- * ---------------------
334
- */
335
- typedef struct Choose
336
- {
337
- Plan plan ;
338
- List * chooseplanlist ;
339
- } Choose ;
340
-
341
331
/* -------------------
342
332
* Tee node information
343
333
*
You can’t perform that action at this time.
0 commit comments