mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 09:08:23 -05:00
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
24 lines
701 B
C
24 lines
701 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parse_cte.h
|
|
* handle CTEs (common table expressions) in parser
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/parser/parse_cte.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSE_CTE_H
|
|
#define PARSE_CTE_H
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
extern List *transformWithClause(ParseState *pstate, WithClause *withClause);
|
|
|
|
extern void analyzeCTETargetList(ParseState *pstate, CommonTableExpr *cte,
|
|
List *tlist);
|
|
|
|
#endif /* PARSE_CTE_H */
|