Header And Logo

PostgreSQL
| The world's most advanced open source database.

Defines | Typedefs | Functions | Variables

pg_user_mapping.h File Reference

#include "catalog/genbki.h"
Include dependency graph for pg_user_mapping.h:
This graph shows which files directly or indirectly include this file:

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_mappingForm_pg_user_mapping

Functions

 CATALOG (pg_user_mapping, 1418)

Variables

 FormData_pg_user_mapping

Define Documentation

#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

Typedef Documentation

Definition at line 45 of file pg_user_mapping.h.


Function Documentation

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;


Variable Documentation

Definition at line 38 of file pg_user_mapping.h.