PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_seclabel.h File Reference
#include "catalog/genbki.h"
#include "catalog/pg_seclabel_d.h"
Include dependency graph for pg_seclabel.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

BEGIN_CATALOG_STRUCT CATALOG (pg_seclabel, 3596, SecLabelRelationId)
 
END_CATALOG_STRUCT DECLARE_TOAST (pg_seclabel, 3598, 3599)
 
 DECLARE_UNIQUE_INDEX_PKEY (pg_seclabel_object_index, 3597, SecLabelObjectIndexId, pg_seclabel, btree(objoid oid_ops, classoid oid_ops, objsubid int4_ops, provider text_ops))
 

Variables

 FormData_pg_seclabel
 

Function Documentation

◆ CATALOG()

BEGIN_CATALOG_STRUCT CATALOG ( pg_seclabel  ,
3596  ,
SecLabelRelationId   
)

Definition at line 30 of file pg_seclabel.h.

31{
32 Oid objoid; /* OID of the object itself */
33 Oid classoid BKI_LOOKUP(pg_class); /* OID of table containing the
34 * object */
35 int32 objsubid; /* column number, or 0 if not used */
36
37#ifdef CATALOG_VARLEN /* variable-length fields start here */
38 text provider BKI_FORCE_NOT_NULL; /* name of label provider */
39 text label BKI_FORCE_NOT_NULL; /* security label of the object */
40#endif
int32_t int32
Definition c.h:554
#define BKI_LOOKUP(catalog)
Definition genbki.h:65
#define BKI_FORCE_NOT_NULL
Definition genbki.h:52
static char * label
FormData_pg_seclabel
Definition pg_seclabel.h:41
unsigned int Oid
static int fb(int x)
Definition c.h:718

References BKI_FORCE_NOT_NULL, BKI_LOOKUP, fb(), and label.

◆ DECLARE_TOAST()

END_CATALOG_STRUCT DECLARE_TOAST ( pg_seclabel  ,
3598  ,
3599   
)

◆ DECLARE_UNIQUE_INDEX_PKEY()

DECLARE_UNIQUE_INDEX_PKEY ( pg_seclabel_object_index  ,
3597  ,
SecLabelObjectIndexId  ,
pg_seclabel  ,
btree(objoid oid_ops, classoid oid_ops, objsubid int4_ops, provider text_ops  
)

Variable Documentation

◆ FormData_pg_seclabel

FormData_pg_seclabel

Definition at line 41 of file pg_seclabel.h.