Re: PGStatement#setPrepareThreshold

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: PGStatement#setPrepareThreshold
Дата
Msg-id 200608040357.k743vrw28938@momjian.us
обсуждение исходный текст
Ответ на Re: PGStatement#setPrepareThreshold  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-jdbc
One complexity of changing the prefix to not use "statement:" is that
log_statement does control this output.  Changing that might cause
confusion, especially for scripts that process the logs.  How do you
like "statement:  <protocol execute>"?

---------------------------------------------------------------------------

Tom Lane wrote:
> Dave Cramer <pg@fastcrypt.com> writes:
> > However I'm still puzzled by these backend logs
>
> > <test test>LOG:  statement: PREPARE S_3 AS INSERT INTO texttable (te)
> > VALUES ($1)
> > <test test>LOG:  statement: <BIND>
> > <test test>LOG:  statement: EXECUTE <unnamed>  [PREPARE:  INSERT INTO
> > texttable (te) VALUES ($1)]
>
> > We see the prepare to a named statement, but then the execute is
> > unnamed ?
>
> What it's showing you there is the name of the protocol-level portal;
> evidently you're using the unnamed portal to execute the INSERT.
>
> This does demonstrate once again that the current approach to logging
> parse/bind/execute operations is entirely wrongheaded, because it
> deliberately confuses the protocol and SQL levels.  I see that Bruce
> has changed CVS tip so that the message is
>
> <test test>LOG:  statement: [protocol] EXECUTE <unnamed>  [PREPARE:  INSERT INTO
> texttable (te) VALUES ($1)]
>
> but I hardly think that's going to be enough to de-confuse people.
> All those brackets just serve to make things *more* confusing IMHO.
>
> What I'd like to see is something like this:
>
> Simple Query produces
>
>     LOG: statement: ...statement text here...
>
> Parse produces
>
>     LOG: parse statement-name: ...statement text here...
>
> Bind produces
>
>     LOG: bind portal-name to statement-name (someday print arguments here)
>
> Execute produces
>
>     LOG: execute portal-name: ...statement text here...
>
> No brackets, no pretending that an Execute message is the same thing
> as a SQL EXECUTE command or that Parse is the same as PREPARE.
>
>             regards, tom lane

--
  Bruce Momjian   bruce@momjian.us
  EnterpriseDB    http://www.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: PGStatement#setPrepareThreshold
Следующее
От: Dave Cramer
Дата:
Сообщение: Re: PGStatement#setPrepareThreshold