diff options
author | Magnus Hagander <magnus@hagander.net> | 2020-08-31 13:03:54 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2020-08-31 13:06:08 +0200 |
commit | d58dea6ae028366a5252477532d523dd3a908ab1 (patch) | |
tree | ba1d89139eab91ad6feb959ce5678845ba0d5528 | |
parent | d1ee6ce4c9ff5f5b1cc890f573ce836c0a1fd043 (diff) |
Fix docs bug stating file_fdw requires absolute paths
It has always (since the first commit) worked with relative paths, so
use the same wording as other parts of the documentation.
Author: Bruce Momjian
Discussion: https://postgr.es/m/CABUevExx-hm=cit+A9LeKBH39srvk8Y2tEZeEAj5mP8YfzNKUg@mail.gmail.com
-rw-r--r-- | doc/src/sgml/file-fdw.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/file-fdw.sgml b/doc/src/sgml/file-fdw.sgml index d80142b4fdf..7944f0d4a76 100644 --- a/doc/src/sgml/file-fdw.sgml +++ b/doc/src/sgml/file-fdw.sgml @@ -28,7 +28,8 @@ <listitem> <para> - Specifies the file to be read. Must be an absolute path name. + Specifies the file to be read. Relative paths are relative to the + data directory. Either <literal>filename</literal> or <literal>program</literal> must be specified, but not both. </para> |