summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_shseclabel.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-05-19 10:40:04 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2015-05-19 10:40:04 -0400
commitafee04352bc01b79cde33c018a82c2eeb1ce84eb (patch)
tree5706be9517c9b5c970efcc170e8f4d84334910e1 /src/include/catalog/pg_shseclabel.h
parent55c0da38be611899ae6d185b72b5ffcadc9d78c9 (diff)
downloadpostgresql-afee04352bc01b79cde33c018a82c2eeb1ce84eb.tar.gz
Revert "Change pg_seclabel.provider and pg_shseclabel.provider to type "name"."
This reverts commit b82a7be603f1811a0a707b53c62de6d5d9431740. There is a better (less invasive) way to fix it, which I will commit next.
Diffstat (limited to 'src/include/catalog/pg_shseclabel.h')
-rw-r--r--src/include/catalog/pg_shseclabel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/pg_shseclabel.h b/src/include/catalog/pg_shseclabel.h
index 77d438926a..3977b42f87 100644
--- a/src/include/catalog/pg_shseclabel.h
+++ b/src/include/catalog/pg_shseclabel.h
@@ -24,9 +24,9 @@ CATALOG(pg_shseclabel,3592) BKI_SHARED_RELATION BKI_WITHOUT_OIDS
{
Oid objoid; /* OID of the shared object itself */
Oid classoid; /* OID of table containing the shared object */
- NameData provider; /* name of label provider */
#ifdef CATALOG_VARLEN /* variable-length fields start here */
+ text provider BKI_FORCE_NOT_NULL; /* name of label provider */
text label BKI_FORCE_NOT_NULL; /* security label of the object */
#endif
} FormData_pg_shseclabel;