aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2020-03-23 18:38:42 -0400
committerBruce Momjian <bruce@momjian.us>2020-03-23 18:38:42 -0400
commit0830d21f5b01064837dc8bd910ab31a5b7a1101a (patch)
tree2ce321f856975d152cbf0831697d2ada0430c3ef /doc/src
parentf801ceb696b4a865ef80fd29c9df880280472e03 (diff)
downloadpostgresql-0830d21f5b01064837dc8bd910ab31a5b7a1101a.tar.gz
postgresql-0830d21f5b01064837dc8bd910ab31a5b7a1101a.zip
docs: add backend_type to file-fdw CSV log example
backend_type was added to the CVS log output in commit 70a7b4776b. Reported-by: Fabrízio de Royes Mello Discussion: https://postgr.es/m/CAFcNs+ruvRks3BV1j7yQ-MvxsswmKJa0cVh2yK5Dd-xXVM8wPw@mail.gmail.com Backpatch-through: master
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/file-fdw.sgml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/file-fdw.sgml b/doc/src/sgml/file-fdw.sgml
index 28b61c8f2d0..ed028e4ec94 100644
--- a/doc/src/sgml/file-fdw.sgml
+++ b/doc/src/sgml/file-fdw.sgml
@@ -261,7 +261,8 @@ CREATE FOREIGN TABLE pglog (
query text,
query_pos integer,
location text,
- application_name text
+ application_name text,
+ backend_type text
) SERVER pglog
OPTIONS ( filename '/home/josh/data/log/pglog.csv', format 'csv' );
</programlisting>