diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/pg_proc.h | 6 | ||||
| -rw-r--r-- | src/include/rewrite/locks.h | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 06cb99d0c1..1f8ca51583 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.69 1998/09/01 04:35:10 momjian Exp $ + * $Id: pg_proc.h,v 1.70 1998/10/02 16:27:55 momjian Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -2040,6 +2040,10 @@ DATA(insert OID = 1640 ( pg_get_ruledef PGUID 11 f t f 1 f 25 "19" 100 0 0 1 DESCR("source text of a rule"); DATA(insert OID = 1641 ( pg_get_viewdef PGUID 11 f t f 1 f 25 "19" 100 0 0 100 foo bar )); DESCR("select statement of a view"); +DATA(insert OID = 1642 ( pg_get_userbyid PGUID 11 f t f 1 f 19 "23" 100 0 0 100 foo bar )); +DESCR("user name by UID (with fallback)"); +DATA(insert OID = 1643 ( pg_get_indexdef PGUID 11 f t f 1 f 25 "26" 100 0 0 100 foo bar )); +DESCR("index description"); /* * prototypes for functions pg_proc.c diff --git a/src/include/rewrite/locks.h b/src/include/rewrite/locks.h index b51b02463e..ad258d9063 100644 --- a/src/include/rewrite/locks.h +++ b/src/include/rewrite/locks.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: locks.h,v 1.9 1998/09/01 04:37:57 momjian Exp $ + * $Id: locks.h,v 1.10 1998/10/02 16:27:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,5 +19,6 @@ extern List *matchLocks(CmdType event, RuleLock *rulelocks, int varno, Query *parsetree); +extern void checkLockPerms(List *locks, Query *parsetree, int rt_index); #endif /* LOCKS_H */ |
