summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_seclabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/catalog/pg_seclabel.h')
-rw-r--r--src/include/catalog/pg_seclabel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/catalog/pg_seclabel.h b/src/include/catalog/pg_seclabel.h
index b468d6924b..101ec3c111 100644
--- a/src/include/catalog/pg_seclabel.h
+++ b/src/include/catalog/pg_seclabel.h
@@ -25,8 +25,10 @@ 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;
/* ----------------