From: Shigeru Hanada Date: Wed, 29 Jun 2011 10:12:15 +0000 (+0900) Subject: Revise document of force_not_null option. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=db1c6baeff0ca5c1d2ad94a7e514584b266ff480;p=users%2Fhanada%2Fpostgres.git Revise document of force_not_null option. Among FDW options for file_fdw, force_not_null is the only option which has different specification from COPY's one. COPY's one requires a list of columns but file_fdw's one requires a boolean value. --- diff --git a/doc/src/sgml/file-fdw.sgml b/doc/src/sgml/file-fdw.sgml index 107476fa4c..b20d775426 100644 --- a/doc/src/sgml/file-fdw.sgml +++ b/doc/src/sgml/file-fdw.sgml @@ -122,10 +122,11 @@ - Specifies that the column shouldn't been matched against the null string. - Acceptable values are true and falset - (case sensitive). - the same as COPY's FORCE_NOT_NULL option. + Specifies whether values for the column shouldn't been matched against + the null string. Acceptable values are true for no matching, + and false for matching (case sensitive). + true is same as specifing the column in COPY's + FORCE_NOT_NULL option.