1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
14 #ifndef REWRITEREMOVE_H
15 #define REWRITEREMOVE_H
17 #include "nodes/parsenodes.h"
20 extern void RemoveRewriteRule(Oid owningRel
, const char *ruleName
,
21 DropBehavior behavior
, bool missing_ok
);
22 extern void RemoveRewriteRuleById(Oid ruleOid
);
24 #endif /* REWRITEREMOVE_H */