projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5423853
)
Add leader_pid field into the example of file_fdw for csvlog.
author
Fujii Masao
<
[email protected]
>
Wed, 16 Sep 2020 09:47:39 +0000
(18:47 +0900)
committer
Fujii 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
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/file-fdw.sgml
b/doc/src/sgml/file-fdw.sgml
index eefc6e7e5b192dd8a2ce1d8ea446a8eab1a31473..8831f5911f129fc6367914bdef8a48ff19c2a0c8 100644
(file)
--- a/
doc/src/sgml/file-fdw.sgml
+++ b/
doc/src/sgml/file-fdw.sgml
@@
-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>