From 7d0c4188f1b2c5e6b158dac3acab6def10959cae Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 31 Jul 2000 22:39:17 +0000 Subject: Make acl-related functions safe for TOAST. Mark pg_class.relacl as compressible but not externally storable (since we're not sure about whether creating a toast relation for pg_class would work). --- src/include/postgres.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/postgres.h') diff --git a/src/include/postgres.h b/src/include/postgres.h index f11e28ed9f9..1011d04cbbd 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.43 2000/07/03 23:09:56 wieck Exp $ + * $Id: postgres.h,v 1.44 2000/07/31 22:39:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -46,8 +46,6 @@ * ---------------------------------------------------------------- */ -typedef int4 aclitem; - #define InvalidOid ((Oid) 0) #define OidIsValid(objectId) ((bool) ((objectId) != InvalidOid)) @@ -57,6 +55,8 @@ typedef Oid RegProcedure; #define RegProcedureIsValid(p) OidIsValid(p) +typedef int4 aclitem; /* PHONY definition for catalog use only */ + /* ---------------------------------------------------------------- * Section 2: variable length and array types * ---------------------------------------------------------------- -- cgit v1.2.3