]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-seclabel.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-seclabel.txt
1
2 52.46. pg_seclabel #
3
4    The catalog pg_seclabel stores security labels on database objects.
5    Security labels can be manipulated with the SECURITY LABEL command. For
6    an easier way to view security labels, see Section 53.23.
7
8    See also pg_shseclabel, which performs a similar function for security
9    labels of database objects that are shared across a database cluster.
10
11    Table 52.46. pg_seclabel Columns
12
13    Column Type
14
15    Description
16
17    objoid oid (references any OID column)
18
19    The OID of the object this security label pertains to
20
21    classoid oid (references pg_class.oid)
22
23    The OID of the system catalog this object appears in
24
25    objsubid int4
26
27    For a security label on a table column, this is the column number (the
28    objoid and classoid refer to the table itself). For all other object
29    types, this column is zero.
30
31    provider text
32
33    The label provider associated with this label.
34
35    label text
36
37    The security label applied to this object.