aboutsummaryrefslogtreecommitdiff
path: root/src/include/rewrite/rewriteSupport.h
blob: 6dcaf094993667fa8fb88ed3106ed7bcf7643c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*-------------------------------------------------------------------------
 *
 * rewriteSupport.h--
 *    
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * $Id: rewriteSupport.h,v 1.1 1996/08/28 07:24:13 scrappy Exp $
 *
 *-------------------------------------------------------------------------
 */
#ifndef	REWRITESUPPORT_H
#define	REWRITESUPPORT_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 */