mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Allow GRANT/REVOKE to/from more than one user per invocation. Command tag
for GRANT/REVOKE is now just that, not "CHANGE". On the way, migrate some of the aclitem internal representation away from the parser and build a real parse tree instead. Also add some 'const' qualifiers.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: nodes.h,v 1.89 2001/04/24 00:08:38 tgl Exp $
|
||||
* $Id: nodes.h,v 1.90 2001/06/09 23:21:55 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -148,7 +148,7 @@ typedef enum NodeTag
|
||||
T_SelectStmt,
|
||||
T_AlterTableStmt,
|
||||
T_SetOperationStmt,
|
||||
T_ChangeACLStmt,
|
||||
T_GrantStmt,
|
||||
T_ClosePortalStmt,
|
||||
T_ClusterStmt,
|
||||
T_CopyStmt,
|
||||
@ -224,6 +224,7 @@ typedef enum NodeTag
|
||||
T_CaseWhen,
|
||||
T_RowMarkXXX, /* not used anymore; tag# available */
|
||||
T_FkConstraint,
|
||||
T_PrivGrantee,
|
||||
|
||||
/*
|
||||
* TAGS FOR FUNCTION-CALL CONTEXT AND RESULTINFO NODES (see fmgr.h)
|
||||
|
Reference in New Issue
Block a user