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