1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

Change resjunk to a boolean.

This commit is contained in:
Bruce Momjian
1999-05-17 17:03:51 +00:00
parent fd1647706d
commit 585c967720
17 changed files with 63 additions and 63 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: primnodes.h,v 1.26 1999/05/12 15:02:07 wieck Exp $
* $Id: primnodes.h,v 1.27 1999/05/17 17:03:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -31,9 +31,8 @@
* reskey - order of key in a sort (for those > 0)
* reskeyop - sort operator Oid
* resgroupref - set to nonzero if referenced from a group by clause
* resjunk - set to nonzero to eliminate the attribute
* from final target list e.g., ctid for replace
* and delete
* resjunk - set to true to eliminate the attribute
* from final target list
*
* ----------------
*/
@@ -47,7 +46,7 @@ typedef struct Resdom
Index reskey;
Oid reskeyop;
Index resgroupref;
int resjunk;
bool resjunk;
} Resdom;
/* -------------