00001 /*------------------------------------------------------------------------- 00002 * 00003 * parse_cte.h 00004 * handle CTEs (common table expressions) in parser 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/parser/parse_cte.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef PARSE_CTE_H 00015 #define PARSE_CTE_H 00016 00017 #include "parser/parse_node.h" 00018 00019 extern List *transformWithClause(ParseState *pstate, WithClause *withClause); 00020 00021 extern void analyzeCTETargetList(ParseState *pstate, CommonTableExpr *cte, 00022 List *tlist); 00023 00024 #endif /* PARSE_CTE_H */