Header And Logo

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

Defines | Typedefs | Functions | Variables

pg_description.h File Reference

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

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_descriptionForm_pg_description

Functions

 CATALOG (pg_description, 2609) BKI_WITHOUT_OIDS

Variables

 FormData_pg_description

Define Documentation

#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.


Typedef Documentation

Definition at line 64 of file pg_description.h.


Function Documentation

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;


Variable Documentation

Definition at line 57 of file pg_description.h.