One Hat Cyber Team
Your IP :
172.70.80.191
Server IP :
188.114.97.3
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
pgsql
/
server
/
catalog
/
Edit File:
pg_seclabel.h
/* ------------------------------------------------------------------------- * * pg_seclabel.h * definition of the system "security label" relation (pg_seclabel) * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * ------------------------------------------------------------------------- */ #ifndef PG_SECLABEL_H #define PG_SECLABEL_H #include "catalog/genbki.h" /* ---------------- * pg_seclabel definition. cpp turns this into * typedef struct FormData_pg_seclabel * ---------------- */ #define SecLabelRelationId 3596 CATALOG(pg_seclabel,3596) BKI_WITHOUT_OIDS { Oid objoid; /* OID of the object itself */ Oid classoid; /* OID of table containing the object */ int4 objsubid; /* column number, or 0 if not used */ #ifdef CATALOG_VARLEN /* variable-length fields start here */ text provider; /* name of label provider */ text label; /* security label of the object */ #endif } FormData_pg_seclabel; /* ---------------- * compiler constants for pg_seclabel * ---------------- */ #define Natts_pg_seclabel 5 #define Anum_pg_seclabel_objoid 1 #define Anum_pg_seclabel_classoid 2 #define Anum_pg_seclabel_objsubid 3 #define Anum_pg_seclabel_provider 4 #define Anum_pg_seclabel_label 5 #endif /* PG_SECLABEL_H */
Simpan