blob: 14238708462778bd18d3bc3907e1d0ef1bfb2317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*-------------------------------------------------------------------------
*
* viewUpdate.h
*
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/rewrite/viewUpdate.h,v 1.1 2009/01/22 17:27:55 petere Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef VIEW_UPDATE_H
#define VIEW_UPDATE_H
#include "nodes/parsenodes.h"
extern void
CreateViewUpdateRules(Oid viewOid, const Query *viewDef);
#endif /* VIEW_UPDATE_H */
|