1 /*-------------------------------------------------------------------------
4 * data structures for POSTGRES Rule System II (rewrite rules only)
6 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
11 *-------------------------------------------------------------------------
16 #include "access/attnum.h"
17 #include "nodes/pg_list.h"
21 * holds a info for a rewrite rule
24 typedef struct RewriteRule
37 * all rules that apply to a particular relation. Even though we only
38 * have the rewrite rule system left and these are not really "locks",
39 * the name is kept for historical reasons.
41 typedef struct RuleLock
47 #endif /* REWRITE_H */