mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 13:24:01 -05:00
21 lines
626 B
C
21 lines
626 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteRemove.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteRemove.h,v 1.7 2001/01/24 19:43:27 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITEREMOVE_H
|
|
#define REWRITEREMOVE_H
|
|
|
|
extern char *RewriteGetRuleEventRel(char *rulename);
|
|
extern void RemoveRewriteRule(char *ruleName);
|
|
extern void RelationRemoveRules(Oid relid);
|
|
|
|
#endif /* REWRITEREMOVE_H */
|