pgsql: Add a comment noting that FDWs don't have to implement EXCEPT or

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add a comment noting that FDWs don't have to implement EXCEPT or
Date: 2015-12-31 22:59:24
Message-ID: E1aEmBo-0005B7-55@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add a comment noting that FDWs don't have to implement EXCEPT or LIMIT TO.

postgresImportForeignSchema pays attention to IMPORT's EXCEPT and LIMIT TO
options, but only as an efficiency hack, not for correctness' sake. The
FDW documentation does explain that, but someone using postgres_fdw.c
as a coding guide might not remember it, so let's add a comment here.
Per question from Regina Obe.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/5f36096b77fe47015cbac130d1a20d089f202a1e

Modified Files
--------------
contrib/postgres_fdw/postgres_fdw.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2016-01-01 03:29:53 pgsql: doc: Add index entries and better documentation link for Linux O
Previous Message Tom Lane 2015-12-31 22:37:37 pgsql: Fix ALTER OPERATOR to update dependencies properly.