diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-29 22:14:11 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-29 22:14:11 +0000 |
commit | ea4686e3e1f00910a19e18dd59f5c518345bb431 (patch) | |
tree | 00359cabd37ad22e8228a5cc47a8600f45b74896 /src/include/utils/acl.h | |
parent | b9459c6adbf08abae7bbddb5c497476814823b7d (diff) | |
download | postgresql-ea4686e3e1f00910a19e18dd59f5c518345bb431.tar.gz postgresql-ea4686e3e1f00910a19e18dd59f5c518345bb431.zip |
Implement CREATE/DROP OPERATOR CLASS. Work still remains: need more
documentation (xindex.sgml should be rewritten), need to teach pg_dump
about it, need to update contrib modules that currently build pg_opclass
entries by hand. Original patch by Bill Studenmund, grammar adjustments
and general update for 7.3 by Tom Lane.
Diffstat (limited to 'src/include/utils/acl.h')
-rw-r--r-- | src/include/utils/acl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h index 709c4e78c6c..fff2c38c0f9 100644 --- a/src/include/utils/acl.h +++ b/src/include/utils/acl.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: acl.h,v 1.45 2002/06/20 20:29:52 momjian Exp $ + * $Id: acl.h,v 1.46 2002/07/29 22:14:11 tgl Exp $ * * NOTES * For backward-compatibility purposes we have to allow there @@ -209,5 +209,6 @@ extern bool pg_type_ownercheck(Oid type_oid, Oid userid); extern bool pg_oper_ownercheck(Oid oper_oid, Oid userid); extern bool pg_proc_ownercheck(Oid proc_oid, Oid userid); extern bool pg_namespace_ownercheck(Oid nsp_oid, Oid userid); +extern bool pg_opclass_ownercheck(Oid opc_oid, Oid userid); #endif /* ACL_H */ |