mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 00:57:52 -05:00
24 lines
709 B
C
24 lines
709 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteSupport.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteSupport.h,v 1.20 2001/11/05 17:46:35 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITESUPPORT_H
|
|
#define REWRITESUPPORT_H
|
|
|
|
extern bool IsDefinedRewriteRule(const char *ruleName);
|
|
|
|
extern char *MakeRetrieveViewRuleName(const char *view_name);
|
|
|
|
extern void SetRelationRuleStatus(Oid relationId, bool relHasRules,
|
|
bool relIsBecomingView);
|
|
|
|
#endif /* REWRITESUPPORT_H */
|