Re: change format of logging statements?
От
Alvaro Herrera
Тема
Re: change format of logging statements?
Дата
Msg-id
20071026200754.GB6725@alvh.no-ip.org
Ответ на
Re: change format of logging statements? (Tom Lane)
Список
Дерево обсуждения
change format of logging statements? Matthew Hixson <hixson@poindextrose.org>
Re: change format of logging statements? Alvaro Herrera <alvherre@commandprompt.com>
Re: change format of logging statements? Matthew Hixson <hixson@poindextrose.org>
Re: change format of logging statements? Tom Lane <tgl@sss.pgh.pa.us>
Re: change format of logging statements? Alvaro Herrera <alvherre@commandprompt.com>
Tom Lane wrote:
> Matthew Hixson writes:
> > Instead of:
> > DEBUG: insert into foo (name) values ($1);
> > DETAIL: parameters: $1 = 'stan'
> > I'd like to see:
> > DEBUG: insert into foo (name) values ('stan');
>
> Don't hold your breath. That would require a great deal more smarts
> in the logging code (and a great deal more cycles expended) than it
> has now.
That said, you can use explain on these things, though you must do a bit
more work:
alvherre=# prepare foo as insert into foo (name) values ($1);
PREPARE
alvherre=# explain execute foo('stan');
QUERY PLAN
------------------------------------------
Result (cost=0.00..0.01 rows=1 width=0)
(1 ligne)
The benefit is that this will use the same plan that Hibernate would be
using, whereas simply expanding the literal in the query would possibly not.
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
В списке pgsql-general по дате отправления