/*------------------------------------------------------------------------- * * parse_target.h * * * * Copyright (c) 1994, Regents of the University of California * * $Id: parse_target.h,v 1.3 1997/11/26 03:43:18 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 */