aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-03-14 14:27:11 -0400
committerRobert Haas <rhaas@postgresql.org>2016-03-14 14:29:12 -0400
commit6be84eeb8d5a72014b1b6e44d0646f69531a1ccf (patch)
treed82b1b8ba9116ee21990a79f1bafeade51e33dbc /src/include
parent74a379b984d4df91acec2436a16c51caee3526af (diff)
downloadpostgresql-6be84eeb8d5a72014b1b6e44d0646f69531a1ccf.tar.gz
postgresql-6be84eeb8d5a72014b1b6e44d0646f69531a1ccf.zip
Update more comments for 96198d94cb7adc664bda341842dc8db671d8be72.
Etsuro Fujita, reviewed (though not completely endorsed) by Ashutosh Bapat, and slightly expanded by me.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/nodes/relation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h
index 641728bb0f4..bdea72c3f47 100644
--- a/src/include/nodes/relation.h
+++ b/src/include/nodes/relation.h
@@ -448,9 +448,11 @@ typedef struct PlannerInfo
* in just as for a baserel, except we don't bother with lateral_vars.
*
* If the relation is either a foreign table or a join of foreign tables that
- * all belong to the same foreign server, these fields will be set:
+ * all belong to the same foreign server and use the same user mapping, these
+ * fields will be set:
*
* serverid - OID of foreign server, if foreign table (else InvalidOid)
+ * umid - OID of user mapping, if foreign table (else InvalidOid)
* fdwroutine - function hooks for FDW, if foreign table (else NULL)
* fdw_private - private state for FDW, if foreign table (else NULL)
*