/*------------------------------------------------------------------------- * * parse_target.h * * * * Copyright (c) 1994, Regents of the University of California * * $Id: parse_target.h,v 1.6 1998/05/29 14:07:50 thomas Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_TARGET_H #define PARSE_TARGET_H #include #include #include #include #include #define EXPR_COLUMN_FIRST 1 #define EXPR_RELATION_FIRST 2 extern List *transformTargetList(ParseState *pstate, List *targetlist); extern List *makeTargetNames(ParseState *pstate, List *cols); extern void transformTargetId(ParseState *pstate, Ident *ident, TargetEntry *tent, char *resname, int16 resjunk); extern Node *coerce_target_expr(ParseState *pstate, Node *expr, Oid type_id, Oid attrtype); #endif /* PARSE_TARGET_H */