rewriteSupport.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * rewriteSupport.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: rewriteSupport.h,v 1.10 1999/02/13 23:22:01 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef REWRITESUPPORT_H
  14. #define REWRITESUPPORT_H
  15. #include "access/attnum.h"
  16. #include "nodes/pg_list.h"
  17. extern int IsDefinedRewriteRule(char *ruleName);
  18. extern void prs2_addToRelation(Oid relid, Oid ruleId, CmdType event_type,
  19.    AttrNumber attno, bool isInstead, Node *qual,
  20.    List *actions);
  21. extern void prs2_deleteFromRelation(Oid relid, Oid ruleId);
  22. #endif  /* REWRITESUPPORT_H */