mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-16 19:37:00 +08:00
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
26 lines
788 B
C
26 lines
788 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteSupport.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/rewrite/rewriteSupport.h,v 1.27 2004/12/31 22:03:41 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITESUPPORT_H
|
|
#define REWRITESUPPORT_H
|
|
|
|
/* The ON SELECT rule of a view is always named this: */
|
|
#define ViewSelectRuleName "_RETURN"
|
|
|
|
extern bool IsDefinedRewriteRule(Oid owningRel, const char *ruleName);
|
|
|
|
extern void SetRelationRuleStatus(Oid relationId, bool relHasRules,
|
|
bool relIsBecomingView);
|
|
|
|
#endif /* REWRITESUPPORT_H */
|