aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2020-09-09 12:20:53 +0200
committerMagnus Hagander <magnus@hagander.net>2020-09-09 12:22:38 +0200
commit1bf0b9c5f58c61c160519a77a8f9dd24cea68b32 (patch)
treeb46b557c1c6ab40c5f502dfdac6b1d94967fa1f3
parentd0230a43fcae6f923fcedfe6f27db7fca8760d95 (diff)
downloadpostgresql-1bf0b9c5f58c61c160519a77a8f9dd24cea68b32.tar.gz
postgresql-1bf0b9c5f58c61c160519a77a8f9dd24cea68b32.zip
Add missing quote in docs
Mistake in commit 68b603e1a9. Reported-by: Ian Barwick
-rw-r--r--doc/src/sgml/file-fdw.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/file-fdw.sgml b/doc/src/sgml/file-fdw.sgml
index 29d79832a33..eefc6e7e5b1 100644
--- a/doc/src/sgml/file-fdw.sgml
+++ b/doc/src/sgml/file-fdw.sgml
@@ -267,7 +267,7 @@ CREATE FOREIGN TABLE pglog (
application_name text,
backend_type text
) SERVER pglog
-OPTIONS ( filename log/pglog.csv', format 'csv' );
+OPTIONS ( filename 'log/pglog.csv', format 'csv' );
</programlisting>
</para>