mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03: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
28 lines
730 B
C
28 lines
730 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* view.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/commands/view.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef VIEW_H
|
|
#define VIEW_H
|
|
|
|
#include "catalog/objectaddress.h"
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void validateWithCheckOption(const char *value);
|
|
|
|
extern ObjectAddress DefineView(ViewStmt *stmt, const char *queryString,
|
|
int stmt_location, int stmt_len);
|
|
|
|
extern void StoreViewQuery(Oid viewOid, Query *viewParse, bool replace);
|
|
|
|
#endif /* VIEW_H */
|