diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-08-08 01:23:15 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-08-08 01:23:15 +0000 |
commit | 3716f90c39150ccc97d4ebd8615fcb6141663b8e (patch) | |
tree | 6b3d873d851a4f941b6d3db761ac7a9718f6604b /doc/src | |
parent | 2dd7ab062793c89419bb6a49e3f5c3f6120e830f (diff) |
For protocol-level prepare/bind/execute:
o print user name for all
o print portal name if defined for all
o print query for all
o reduce log_statement header to single keyword
o print bind parameters as DETAIL if text mode
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 0acdd275078..c1c42656ad7 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.71 2006/07/27 08:30:41 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.72 2006/08/08 01:23:15 momjian Exp $ --> <chapter Id="runtime-config"> <title>Server Configuration</title> @@ -2808,7 +2808,11 @@ SELECT * FROM parent WHERE key = 2400; <literal>UPDATE</>, <literal>DELETE</>, <literal>TRUNCATE</>, and <literal>COPY FROM</>. <literal>PREPARE</> and <literal>EXPLAIN ANALYZE</> statements are also logged if their - contained command is of an appropriate type. + contained command is of an appropriate type. Protocol-level + prepare, bind, and execute commands are logged only if + <varname>log_statement</> is <literal>all</>. Bind parameter + values are also logged if they are supplied in <literal>text</> + format. </para> <para> The default is <literal>none</>. Only superusers can change this |