diff options
| author | Bruce Momjian | 1999-05-17 17:03:51 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-05-17 17:03:51 +0000 |
| commit | 585c9677201a87a595a1cad145852f2beb094348 (patch) | |
| tree | d282b19dceb6e01a7c0ee1358d0545b392998dfe /src/include/parser | |
| parent | fd1647706dc2bb055c6efe2aba028c1a70bff7ff (diff) | |
Change resjunk to a boolean.
Diffstat (limited to 'src/include/parser')
| -rw-r--r-- | src/include/parser/parse_target.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |
