diff options
author | Neil Conway <neilc@samurai.com> | 2004-09-22 03:55:27 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-09-22 03:55:27 +0000 |
commit | a3c53c834f769b31052ac55d5fb939b7cc9a4ec1 (patch) | |
tree | 265c851ae6f896d268e801502e4c93b09eec19fc /doc/src | |
parent | 665d3736fb69fc92eea3c268daa2ec5e021165b7 (diff) | |
download | postgresql-a3c53c834f769b31052ac55d5fb939b7cc9a4ec1.tar.gz postgresql-a3c53c834f769b31052ac55d5fb939b7cc9a4ec1.zip |
This patch from Alvaro Herrera adds transaction ID to the list of
log_line_prefix escapes. The escape sequence used for this is %x.
%x previously meant "postmaster et al. stop here" -- this has been
renamed to %q.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 2ca5e38018a..831bd1accec 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.281 2004/09/17 22:40:46 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.282 2004/09/22 03:55:24 neilc Exp $ --> <Chapter Id="runtime"> @@ -2394,6 +2394,11 @@ archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Win32 </row> <row> <entry><literal>%x</literal></entry> + <entry>Transaction ID</entry> + <entry>Yes</entry> + </row> + <row> + <entry><literal>%q</literal></entry> <entry>Does not produce any output, but tells non-session processes to stop at this point in the string. Ignored by session processes.</entry> |