diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-03-03 14:03:33 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-03-03 14:04:34 -0300 |
commit | 73f236f5793e25f04933247917092de39011afd9 (patch) | |
tree | 145463a7636df18523085d9b3addcad2ef014a2c /src | |
parent | 43d81f16a393cbc233bbb5d8314c4148cf5a5d68 (diff) | |
download | postgresql-73f236f5793e25f04933247917092de39011afd9.tar.gz postgresql-73f236f5793e25f04933247917092de39011afd9.zip |
Add comment for "is_internal" parameter
This was missed in my commit f4c4335 of 9.3 vintage, so backpatch to
that.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/heap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index 2ec4e774cdb..8993fc007c9 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -993,6 +993,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 * -------------------------------- |