From 585c9677201a87a595a1cad145852f2beb094348 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 17 May 1999 17:03:51 +0000 Subject: Change resjunk to a boolean. --- src/include/parser/parse_target.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/parser') diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h index 263ed8a5043..2a70b5dde32 100644 --- a/src/include/parser/parse_target.h +++ b/src/include/parser/parse_target.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_target.h,v 1.11 1998/09/01 04:37:39 momjian Exp $ + * $Id: parse_target.h,v 1.12 1999/05/17 17:03:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -29,13 +29,13 @@ extern TargetEntry *MakeTargetEntryIdent(ParseState *pstate, char **resname, char *refname, char *colname, - int16 resjunk); + bool resjunk); extern Node *CoerceTargetExpr(ParseState *pstate, Node *expr, Oid type_id, Oid attrtype); TargetEntry *MakeTargetEntryExpr(ParseState *pstate, char *colname, Node *expr, List *arrayRef, - int16 resjunk); + bool resjunk); #endif /* PARSE_TARGET_H */ -- cgit v1.2.3