From: Bruce Momjian Date: Mon, 23 Mar 2020 22:38:42 +0000 (-0400) Subject: docs: add backend_type to file-fdw CSV log example X-Git-Tag: REL_13_BETA1~486 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0830d21f5b01064837dc8bd910ab31a5b7a1101a;p=thirdparty%2Fpostgresql.git 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 --- 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' );