mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.
pg_relcheck is gone; CHECK, UNIQUE, PRIMARY KEY, and FOREIGN KEY constraints all have real live entries in pg_constraint. pg_depend exists, and RESTRICT/CASCADE options work on most kinds of DROP; however, pg_depend is not yet very well populated with dependencies. (Most of the ones that are present at this point just replace formerly hardwired associations, such as the implicit drop of a relation's pg_type entry when the relation is dropped.) Need to add more logic to create dependency entries, improve pg_dump to dump constraints in place of indexes and triggers, and add some regression tests.
This commit is contained in:
@@ -7,14 +7,18 @@
|
||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: rewriteRemove.h,v 1.14 2002/06/20 20:29:52 momjian Exp $
|
||||
* $Id: rewriteRemove.h,v 1.15 2002/07/12 18:43:19 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef REWRITEREMOVE_H
|
||||
#define REWRITEREMOVE_H
|
||||
|
||||
extern void RemoveRewriteRule(Oid owningRel, const char *ruleName);
|
||||
extern void RelationRemoveRules(Oid relid);
|
||||
#include "nodes/parsenodes.h"
|
||||
|
||||
|
||||
extern void RemoveRewriteRule(Oid owningRel, const char *ruleName,
|
||||
DropBehavior behavior);
|
||||
extern void RemoveRewriteRuleById(Oid ruleOid);
|
||||
|
||||
#endif /* REWRITEREMOVE_H */
|
||||
|
Reference in New Issue
Block a user