Add leader_pid field into the example of file_fdw for csvlog.

Commit b8fdee7d0c added leader_pid field into csvlog,
but forgot to update the example of file_fdw for csvlog.

Author: Yuta Katsuragi
This commit is contained in:
Fujii Masao 2020-09-16 18:47:39 +09:00
parent 5423853fee
commit e568ed0eb0
1 changed files with 2 additions and 1 deletions

View 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>