diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-07-22 11:32:23 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-07-22 11:32:23 -0400 |
commit | 13bf801a255aaa18c43f0d17e24ffdb03a77ca31 (patch) | |
tree | 732808818ebd1b167af3cd319cefb81ed17fbdcb /doc/src | |
parent | d70d119151d8e3442500be5e372439ef8805ec2b (diff) |
Remove GetUserMappingId() and GetUserMappingById().
These functions were added in commits fbe5a3fb7 and a104a017f,
but commit 45639a052 removed their only callers. Put the related
code in foreign.c back to the way it was in 9.5, to avoid pointless
cross-version diffs.
Etsuro Fujita
Patch: <d674a3f1-6b63-519c-ef3f-f3188ed6a178@lab.ntt.co.jp>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/fdwhandler.sgml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/src/sgml/fdwhandler.sgml b/doc/src/sgml/fdwhandler.sgml index 9137a965a70..0c1db070ed8 100644 --- a/doc/src/sgml/fdwhandler.sgml +++ b/doc/src/sgml/fdwhandler.sgml @@ -1323,20 +1323,6 @@ GetForeignTable(Oid relid); <para> <programlisting> -UserMapping * -GetUserMappingById(Oid umid); -</programlisting> - - This function returns the <structname>UserMapping</structname> object for - the given user mapping OID. The OID of a user mapping for a foreign scan - is available in the <structname>RelOptInfo</structname>. - If there is no mapping for the OID, this function will throw an error. - A <structname>UserMapping</structname> object contains properties of the - user mapping (see <filename>foreign/foreign.h</filename> for details). - </para> - - <para> -<programlisting> List * GetForeignColumnOptions(Oid relid, AttrNumber attnum); </programlisting> |