#include "catalog/genbki.h"
Go to the source code of this file.
Defines | |
#define | AuthMemRelationId 1261 |
#define | AuthMemRelation_Rowtype_Id 2843 |
#define | Natts_pg_auth_members 4 |
#define | Anum_pg_auth_members_roleid 1 |
#define | Anum_pg_auth_members_member 2 |
#define | Anum_pg_auth_members_grantor 3 |
#define | Anum_pg_auth_members_admin_option 4 |
Typedefs | |
typedef FormData_pg_auth_members * | Form_pg_auth_members |
Functions | |
CATALOG (pg_auth_members, 1261) BKI_SHARED_RELATION BKI_WITHOUT_OIDS BKI_ROWTYPE_OID(2843) BKI_SCHEMA_MACRO | |
Variables | |
FormData_pg_auth_members |
#define Anum_pg_auth_members_admin_option 4 |
Definition at line 55 of file pg_auth_members.h.
Referenced by AddRoleMems(), and DelRoleMems().
#define Anum_pg_auth_members_grantor 3 |
Definition at line 54 of file pg_auth_members.h.
Referenced by AddRoleMems().
#define Anum_pg_auth_members_member 2 |
Definition at line 53 of file pg_auth_members.h.
Referenced by AddRoleMems(), and DropRole().
#define Anum_pg_auth_members_roleid 1 |
Definition at line 52 of file pg_auth_members.h.
Referenced by AddRoleMems(), and DropRole().
#define AuthMemRelation_Rowtype_Id 2843 |
Definition at line 30 of file pg_auth_members.h.
Referenced by RelationCacheInitializePhase2().
#define AuthMemRelationId 1261 |
Definition at line 29 of file pg_auth_members.h.
Referenced by AddRoleMems(), DelRoleMems(), DropRole(), IsSharedRelation(), RelationBuildLocalRelation(), and RelationCacheInitializePhase3().
#define Natts_pg_auth_members 4 |
Definition at line 51 of file pg_auth_members.h.
Referenced by RelationCacheInitializePhase2().
Definition at line 45 of file pg_auth_members.h.
CATALOG | ( | pg_auth_members | , | |
1261 | ||||
) |
Definition at line 32 of file pg_auth_members.h.
{ Oid roleid; /* ID of a role */ Oid member; /* ID of a member of that role */ Oid grantor; /* who granted the membership */ bool admin_option; /* granted with admin option? */ } FormData_pg_auth_members;
Definition at line 38 of file pg_auth_members.h.