Re: appendPQExpBufferVA vs appendStringInfoVA

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: appendPQExpBufferVA vs appendStringInfoVA
Дата
Msg-id 23173.1383355673@sss.pgh.pa.us
обсуждение исходный текст
Ответ на appendPQExpBufferVA vs appendStringInfoVA  (David Rowley <dgrowleyml@gmail.com>)
Ответы Re: appendPQExpBufferVA vs appendStringInfoVA  (Robert Haas <robertmhaas@gmail.com>)
Re: appendPQExpBufferVA vs appendStringInfoVA  (David Rowley <dgrowleyml@gmail.com>)
Список pgsql-hackers
David Rowley <dgrowleyml@gmail.com> writes:
> Tom commited some changes to appendStringInfoVA a few weeks ago which
> allows it to return the required buffer size if the current buffer is not
> big enough.

> On looking at appendPQExpBufferVA I'm thinking it would be nice if it could
> make use of the new pvsnprintf function to bring the same potential
> performance improvement in to there too.

Uh ... it does contain pretty much the same algorithm now.  We can't
simply use pvsnprintf there because exit-on-error is no good for
libpq's purposes, so unless we want to rethink that, a certain
amount of code duplication is unavoidable.  But they both understand
about C99 vsnprintf semantics now.
        regards, tom lane



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

Предыдущее
От: David Rowley
Дата:
Сообщение: appendPQExpBufferVA vs appendStringInfoVA
Следующее
От: Robert Haas
Дата:
Сообщение: Re: appendPQExpBufferVA vs appendStringInfoVA