/*------------------------------------------------------------------------- * * parse_target.h * * * * Copyright (c) 1994, Regents of the University of California * * $Id: parse_target.h,v 1.4 1998/02/26 04:42:49 momjian 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); #endif /* PARSE_TARGET_H */