pgsql: Add FORCE_NOT_NULL support to the file_fdw foreign data wrapper.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add FORCE_NOT_NULL support to the file_fdw foreign data wrapper.
Date: 2011-09-16 20:36:10
Message-ID: E1R4f8s-0005cC-BK@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add FORCE_NOT_NULL support to the file_fdw foreign data wrapper.

This is implemented as a per-column boolean option, rather than trying
to match COPY's convention of a single option listing the column names.

Shigeru Hanada, reviewed by KaiGai Kohei

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/86a3f2d492f19da1f4be8ba099747ac5c83c43bb

Modified Files
--------------
contrib/file_fdw/data/text.csv | 4 +
contrib/file_fdw/file_fdw.c | 112 +++++++++++++++++++++++++++++--
contrib/file_fdw/input/file_fdw.source | 16 +++++
contrib/file_fdw/output/file_fdw.source | 34 +++++++++-
doc/src/sgml/file-fdw.sgml | 31 ++++++++-
5 files changed, 185 insertions(+), 12 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-09-16 22:25:41 pgsql: Remove debug logging for pgstat wait timeout.
Previous Message Tom Lane 2011-09-16 18:47:44 pgsql: Avoid unnecessary page-level SSI lock check in heap_insert().