Add leader_pid field into the example of file_fdw for csvlog.
authorFujii Masao <[email protected]>
Wed, 16 Sep 2020 09:47:39 +0000 (18:47 +0900)
committerFujii Masao <[email protected]>
Wed, 16 Sep 2020 09:47:39 +0000 (18:47 +0900)
Commit b8fdee7d0c added leader_pid field into csvlog,
but forgot to update the example of file_fdw for csvlog.

Author: Yuta Katsuragi

doc/src/sgml/file-fdw.sgml

index eefc6e7e5b192dd8a2ce1d8ea446a8eab1a31473..8831f5911f129fc6367914bdef8a48ff19c2a0c8 100644 (file)
@@ -265,7 +265,8 @@ CREATE FOREIGN TABLE pglog (
   query_pos integer,
   location text,
   application_name text,
-  backend_type text
+  backend_type text,
+  leader_pid integer
 ) SERVER pglog
 OPTIONS ( filename 'log/pglog.csv', format 'csv' );
 </programlisting>