mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-17 03:47:01 +08:00
29 lines
728 B
C
29 lines
728 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteSupport.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteSupport.h,v 1.8 1998/02/26 04:43:13 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITESUPPORT_H
|
|
#define REWRITESUPPORT_H
|
|
|
|
#include "access/attnum.h"
|
|
#include "nodes/pg_list.h"
|
|
|
|
extern int IsDefinedRewriteRule(char *ruleName);
|
|
|
|
extern void
|
|
prs2_addToRelation(Oid relid, Oid ruleId, CmdType event_type,
|
|
AttrNumber attno, bool isInstead, Node *qual,
|
|
List *actions);
|
|
extern void prs2_deleteFromRelation(Oid relid, Oid ruleId);
|
|
|
|
|
|
#endif /* REWRITESUPPORT_H */
|