77 *
88 *
99 * IDENTIFICATION
10- * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.19 1999/05/12 15:01:41 wieck Exp $
10+ * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.20 1999/05/17 17:03:18 momjian Exp $
1111 *
1212 *-------------------------------------------------------------------------
1313 */
@@ -106,7 +106,7 @@ preprocess_targetlist(List *tlist,
106106"ctid" ,
1071070 ,
1081080 ,
109- 1 );
109+ true );
110110
111111var = makeVar (result_relation ,-1 ,TIDOID ,-1 ,0 ,result_relation ,-1 );
112112
@@ -211,7 +211,7 @@ replace_matching_resname(List *new_tlist, List *old_tlist)
211211 * locks.
212212 *
213213 * So, copy all these entries to the end of the target list and set their
214- * 'resjunk' value to1 to show that these are special attributes and
214+ * 'resjunk' value totrue to show that these are special attributes and
215215 * have to be treated specially by the executor!
216216 */
217217foreach (temp ,old_tlist )
@@ -225,7 +225,7 @@ replace_matching_resname(List *new_tlist, List *old_tlist)
225225{
226226newresno = (Resdom * )copyObject ((Node * )old_tle -> resdom );
227227newresno -> resno = length (t_list )+ 1 ;
228- newresno -> resjunk = 1 ;
228+ newresno -> resjunk = true ;
229229new_tl = makeTargetEntry (newresno ,old_tle -> expr );
230230t_list = lappend (t_list ,new_tl );
231231}
@@ -267,7 +267,7 @@ replace_matching_resname(List *new_tlist, List *old_tlist)
267267{
268268newresno = (Resdom * )copyObject ((Node * )old_tle -> resdom );
269269newresno -> resno = length (t_list )+ 1 ;
270- newresno -> resjunk = 1 ;
270+ newresno -> resjunk = true ;
271271new_tl = makeTargetEntry (newresno ,old_tle -> expr );
272272t_list = lappend (t_list ,new_tl );
273273}
@@ -338,7 +338,7 @@ new_relation_targetlist(Oid relid, Index rt_index, NodeTag node_type)
338338attname ,
3393390 ,
340340 (Oid )0 ,
341- 0 ),
341+ false ),
342342(Node * )temp2 );
343343t_list = lappend (t_list ,temp3 );
344344break ;
@@ -358,7 +358,7 @@ new_relation_targetlist(Oid relid, Index rt_index, NodeTag node_type)
358358attname ,
3593590 ,
360360 (Oid )0 ,
361- 0 ),
361+ false ),
362362(Node * )temp_var );
363363t_list = lappend (t_list ,temp_list );
364364break ;