OSDN Git Service

Update copyright for 2009.
[pg-rex/syncrep.git] / src / include / parser / parse_cte.h
1 /*-------------------------------------------------------------------------
2  *
3  * parse_cte.h
4  *        handle CTEs (common table expressions) in parser
5  *
6  *
7  * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/parser/parse_cte.h,v 1.2 2009/01/01 17:24:00 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef PARSE_CTE_H
15 #define PARSE_CTE_H
16
17 #include "parser/parse_node.h"
18
19 extern List *transformWithClause(ParseState *pstate, WithClause *withClause);
20
21 #endif   /* PARSE_CTE_H */