summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2015-03-03 14:03:33 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2015-03-03 14:04:01 -0300
commit2570e28827e3ac4a316300f92dfaf448e55c8e0c (patch)
tree8122e061eb076abaf71438e7dbf4db8708726eab
parentc05fa34333f62de2641102600b5874a395cb289a (diff)
Add comment for "is_internal" parameter
This was missed in my commit f4c4335 of 9.3 vintage, so backpatch to that.
-rw-r--r--src/backend/catalog/heap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c
index 33eef9f1caf..1bbdc6be4fe 100644
--- a/src/backend/catalog/heap.c
+++ b/src/backend/catalog/heap.c
@@ -1001,6 +1001,7 @@ AddNewRelationType(const char *typeName,
* use_user_acl: TRUE if should look for user-defined default permissions;
* if FALSE, relacl is always set NULL
* allow_system_table_mods: TRUE to allow creation in system namespaces
+ * is_internal: is this a system-generated catalog?
*
* Returns the OID of the new relation
* --------------------------------