diff options
| author | Bruce Momjian <bruce@momjian.us> | 1997-09-07 05:04:48 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1997-09-07 05:04:48 +0000 |
| commit | 1ccd423235a48739d6f7a4d7889705b5f9ecc69b (patch) | |
| tree | 8001c4e839dfad8f29ceda7f8c5f5dbb8759b564 /src/include/rewrite/prs2lock.h | |
| parent | 8fecd4febf8357f3cc20383ed29ced484877d5ac (diff) | |
| download | postgresql-1ccd423235a48739d6f7a4d7889705b5f9ecc69b.tar.gz | |
Massive commit to run PGINDENT on all *.c and *.h files.
Diffstat (limited to 'src/include/rewrite/prs2lock.h')
| -rw-r--r-- | src/include/rewrite/prs2lock.h | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/src/include/rewrite/prs2lock.h b/src/include/rewrite/prs2lock.h index d7be60641a..0bf8a25886 100644 --- a/src/include/rewrite/prs2lock.h +++ b/src/include/rewrite/prs2lock.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * * prs2lock.h-- - * data structures for POSTGRES Rule System II (rewrite rules only) + * data structures for POSTGRES Rule System II (rewrite rules only) * * Copyright (c) 1994, Regents of the University of California * - * $Id: prs2lock.h,v 1.4 1996/11/04 07:45:46 scrappy Exp $ + * $Id: prs2lock.h,v 1.5 1997/09/07 05:00:32 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -17,27 +17,29 @@ /* * RewriteRule - - * holds a info for a rewrite rule + * holds a info for a rewrite rule * */ -typedef struct RewriteRule { - Oid ruleId; - CmdType event; - AttrNumber attrno; - Node *qual; - List *actions; - bool isInstead; -} RewriteRule; +typedef struct RewriteRule +{ + Oid ruleId; + CmdType event; + AttrNumber attrno; + Node *qual; + List *actions; + bool isInstead; +} RewriteRule; /* * RuleLock - - * all rules that apply to a particular relation. Even though we only - * have the rewrite rule system left and these are not really "locks", - * the name is kept for historical reasons. + * all rules that apply to a particular relation. Even though we only + * have the rewrite rule system left and these are not really "locks", + * the name is kept for historical reasons. */ -typedef struct RuleLock { - int numLocks; - RewriteRule **rules; -} RuleLock; +typedef struct RuleLock +{ + int numLocks; + RewriteRule **rules; +} RuleLock; -#endif /* REWRITE_H */ +#endif /* REWRITE_H */ |
