From: | Artur Zakirov <zaartur(at)gmail(dot)com> |
---|---|
To: | Luca Ferrari <fluca1978(at)gmail(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: pgaudit.log_parameter |
Date: | 2019-07-31 12:57:34 |
Message-ID: | a120a796-8bcd-1af3-946c-913bc0c3b89f@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hello,
On 31.07.2019 14:21, Luca Ferrari wrote:
> Hello,
> I'm a little confused about the setting pgaudit.log_parameter of the
> pgaudit extension
> (https://github.com/pgaudit/pgaudit/blob/master/README.md)
> What's the purpose of this? AN example of query that will trigger such
> parameter logging? Apparently I cannot get it providing me more
> information than '<none>'.
pgaudit.log_parameter allows to log parameters of prepared statements.
See the documentation:
https://www.postgresql.org/docs/current/sql-prepare.html
The following example logs parameters if pgaudit.log_parameter is on:
EXECUTE fooplan(1, 'Hunter Valley', 't', 200.00);
It should log parameters: 1, 'Hunter Valley', 't', 200.00
--
Artur
From | Date | Subject | |
---|---|---|---|
Next Message | Arthur Zakirov | 2019-07-31 12:58:15 | Re: pgaudit.log_parameter |
Previous Message | Niels Jespersen | 2019-07-31 11:45:58 | SV: Oracle to postgres migration via ora2pg (blob data) |