PostgreSQL Source Code git master
parse_cte.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * parse_cte.h
4 * handle CTEs (common table expressions) in parser
5 *
6 *
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/parser/parse_cte.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef PARSE_CTE_H
15#define PARSE_CTE_H
16
17#include "parser/parse_node.h"
18
19extern List *transformWithClause(ParseState *pstate, WithClause *withClause);
20
21extern void analyzeCTETargetList(ParseState *pstate, CommonTableExpr *cte,
22 List *tlist);
23
24#endif /* PARSE_CTE_H */
void analyzeCTETargetList(ParseState *pstate, CommonTableExpr *cte, List *tlist)
Definition: parse_cte.c:570
List * transformWithClause(ParseState *pstate, WithClause *withClause)
Definition: parse_cte.c:109
Definition: pg_list.h:54