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:09:27 +0200 |
commit | ae6c6c255648fd57467a76770338d1553ebba34e (patch) | |
tree | 99c8bc5f1ec91d1dbfbaaeedeb489517d2c66119 | |
parent | cc8a71e93084487e2b7796483ef0b71c1ba79678 (diff) | |
download | postgresql-ae6c6c255648fd57467a76770338d1553ebba34e.tar.gz postgresql-ae6c6c255648fd57467a76770338d1553ebba34e.zip |
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 d3b39aa120b..7dd56764296 100644 --- a/doc/src/sgml/file-fdw.sgml +++ b/doc/src/sgml/file-fdw.sgml @@ -27,7 +27,8 @@ <listitem> <para> - Specifies the file to be read. Required. Must be an absolute path name. + Specifies the file to be read. Required. Relative paths are relative to the + data directory. </para> </listitem> </varlistentry> |