diff options
author | Magnus Hagander | 2020-08-31 11:03:54 +0000 |
---|---|---|
committer | Magnus Hagander | 2020-08-31 11:03:54 +0000 |
commit | 3a788db60108fed2e51f62a79a5f425401300338 (patch) | |
tree | 007ba17ccece2f509337cef2a9ea147161698b6f | |
parent | 6ca547cf75ef6e922476c51a3fb5e253eef5f1b6 (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 ed028e4ec9..d985ef0a06 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> |