#include "catalog/genbki.h"

Go to the source code of this file.
Defines | |
| #define | UserMappingRelationId 1418 |
| #define | Natts_pg_user_mapping 3 |
| #define | Anum_pg_user_mapping_umuser 1 |
| #define | Anum_pg_user_mapping_umserver 2 |
| #define | Anum_pg_user_mapping_umoptions 3 |
Typedefs | |
| typedef FormData_pg_user_mapping * | Form_pg_user_mapping |
Functions | |
| CATALOG (pg_user_mapping, 1418) | |
Variables | |
| FormData_pg_user_mapping | |
| #define Anum_pg_user_mapping_umoptions 3 |
Definition at line 55 of file pg_user_mapping.h.
Referenced by AlterUserMapping(), CreateUserMapping(), and GetUserMapping().
| #define Anum_pg_user_mapping_umserver 2 |
Definition at line 54 of file pg_user_mapping.h.
Referenced by CreateUserMapping().
| #define Anum_pg_user_mapping_umuser 1 |
Definition at line 53 of file pg_user_mapping.h.
Referenced by CreateUserMapping().
| #define Natts_pg_user_mapping 3 |
Definition at line 52 of file pg_user_mapping.h.
| #define UserMappingRelationId 1418 |
Definition at line 27 of file pg_user_mapping.h.
Referenced by AlterUserMapping(), CreateUserMapping(), getObjectClass(), is_valid_dblink_option(), and RemoveUserMappingById().
Definition at line 45 of file pg_user_mapping.h.
| CATALOG | ( | pg_user_mapping | , | |
| 1418 | ||||
| ) |
Definition at line 29 of file pg_user_mapping.h.
{
Oid umuser; /* Id of the user, InvalidOid if PUBLIC is
* wanted */
Oid umserver; /* server of this mapping */
#ifdef CATALOG_VARLEN /* variable-length fields start here */
text umoptions[1]; /* user mapping options */
#endif
} FormData_pg_user_mapping;
Definition at line 38 of file pg_user_mapping.h.
1.7.1