diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-05-02 13:38:28 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-05-02 13:38:28 +0000 |
| commit | a9d3c2cb18ed4b0de982d649f6f8f9530a388d4a (patch) | |
| tree | 5f6689cf1db85709b1fdeb7b69a017cd4a401346 /src/include/utils | |
| parent | 7ebd5dafd8d77555a1e3660d3936da05531a6d55 (diff) | |
Revert patch --- needs more generalized solution.
> Please find a attached a small patch that adds accessor functions
> for "aclitem" so that it is not an opaque datatype.
>
> I needed these functions to browse aclitems from user land. I can load
> them when necessary, but it seems to me that these accessors for a
> backend type belong to the backend, so I submit them.
>
> Fabien Coelho
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/acl.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h index 6cd1d7fb7ef..4fcec230ccb 100644 --- a/src/include/utils/acl.h +++ b/src/include/utils/acl.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/acl.h,v 1.67 2004/04/26 15:06:49 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/acl.h,v 1.68 2004/05/02 13:38:28 momjian Exp $ * * NOTES * An ACL array is simply an array of AclItems, representing the union @@ -220,11 +220,6 @@ extern Datum aclcontains(PG_FUNCTION_ARGS); extern Datum makeaclitem(PG_FUNCTION_ARGS); extern Datum aclitem_eq(PG_FUNCTION_ARGS); extern Datum hash_aclitem(PG_FUNCTION_ARGS); -extern Datum aclitem_grantee(PG_FUNCTION_ARGS); -extern Datum aclitem_grantor(PG_FUNCTION_ARGS); -extern Datum aclitem_idtype(PG_FUNCTION_ARGS); -extern Datum aclitem_privs(PG_FUNCTION_ARGS); -extern Datum aclitem_goptions(PG_FUNCTION_ARGS); /* * prototypes for functions in aclchk.c |
