X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Finclude%2Fnodes%2Fparsenodes.h;h=bc62c90f4dcef3f5e99dbcdfffa339eac0896cd0;hb=a78fcfb5124379532ce35f3076679f04bd987d60;hp=e2567ff8e441e75e4271fc26513f0cb6da52bf18;hpb=0ee26100b64702f2fb4cd65c6dfdfb8f31e88130;p=pg-rex%2Fsyncrep.git diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index e2567ff8e4..bc62c90f4d 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.321 2006/08/10 02:36:29 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.335 2006/12/23 00:43:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -50,14 +50,14 @@ typedef uint32 AclMode; /* a bitmask of privilege bits */ #define ACL_SELECT (1<<1) #define ACL_UPDATE (1<<2) #define ACL_DELETE (1<<3) -#define ACL_RULE (1<<4) +/* #define ACL_RULE (1<<4) unused, available */ #define ACL_REFERENCES (1<<5) #define ACL_TRIGGER (1<<6) #define ACL_EXECUTE (1<<7) /* for functions */ #define ACL_USAGE (1<<8) /* for languages and namespaces */ #define ACL_CREATE (1<<9) /* for namespaces and databases */ #define ACL_CREATE_TEMP (1<<10) /* for databases */ -#define ACL_CONNECT (1<<11) /* for databases */ +#define ACL_CONNECT (1<<11) /* for databases */ #define N_ACL_RIGHTS 12 /* 1 plus the last 1<