#include "catalog/genbki.h"
Go to the source code of this file.
Defines | |
#define | DescriptionRelationId 2609 |
#define | Natts_pg_description 4 |
#define | Anum_pg_description_objoid 1 |
#define | Anum_pg_description_classoid 2 |
#define | Anum_pg_description_objsubid 3 |
#define | Anum_pg_description_description 4 |
Typedefs | |
typedef FormData_pg_description * | Form_pg_description |
Functions | |
CATALOG (pg_description, 2609) BKI_WITHOUT_OIDS | |
Variables | |
FormData_pg_description |
#define Anum_pg_description_classoid 2 |
Definition at line 72 of file pg_description.h.
Referenced by CreateComments(), DeleteComments(), and GetComment().
#define Anum_pg_description_description 4 |
Definition at line 74 of file pg_description.h.
Referenced by CreateComments(), and GetComment().
#define Anum_pg_description_objoid 1 |
Definition at line 71 of file pg_description.h.
Referenced by CreateComments(), DeleteComments(), and GetComment().
#define Anum_pg_description_objsubid 3 |
Definition at line 73 of file pg_description.h.
Referenced by CreateComments(), DeleteComments(), and GetComment().
#define DescriptionRelationId 2609 |
Definition at line 46 of file pg_description.h.
Referenced by CreateComments(), DeleteComments(), and GetComment().
#define Natts_pg_description 4 |
Definition at line 70 of file pg_description.h.
Definition at line 64 of file pg_description.h.
CATALOG | ( | pg_description | , | |
2609 | ||||
) |
Definition at line 48 of file pg_description.h.
{ Oid objoid; /* OID of object itself */ Oid classoid; /* OID of table containing object */ int32 objsubid; /* column number, or 0 if not used */ #ifdef CATALOG_VARLEN /* variable-length fields start here */ text description; /* description of object */ #endif } FormData_pg_description;
Definition at line 57 of file pg_description.h.