Re: Non-decimal integer literals

Поиск
Список
Период
Сортировка
От Ranier Vilela
Тема Re: Non-decimal integer literals
Дата
Msg-id CAEudQAp7u7q=WBxhcEvpZt67LaHWMKNGL57FP3DoG84uT0embw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Non-decimal integer literals  (Dean Rasheed <dean.a.rasheed@gmail.com>)
Список pgsql-hackers
Em ter., 24 de jan. de 2023 às 07:24, Dean Rasheed <dean.a.rasheed@gmail.com> escreveu:
On Tue, 24 Jan 2023 at 00:47, Ranier Vilela <ranier.vf@gmail.com> wrote:
>
> On 13.01.23 11:01, Dean Rasheed wrote:
> > So I'm feeling quite good about the end result -- I set out hoping not
> > to make performance noticeably worse, but ended up making it
> > significantly better.
> Hi Dean, thanks for your work.
>
> But since PG_RETURN_NULL, is a simple return,
> now the "value" var is not leaked?
>

That originates from a prior commit:

ccff2d20ed Convert a few datatype input functions to use "soft" error reporting.

and see also a bunch of follow-on commits for other input functions.

It will only return NULL if the input is invalid and escontext is
non-NULL. You only identified a fraction of the cases where that would
happen. If we really cared about not leaking memory for invalid
inputs, we'd have to look at every code path using ereturn()
(including lower-level functions, and not just in numeric.c). I think
that would be a waste of time, and counterproductive -- trying to
immediately free memory for all possible invalid inputs would likely
complicate a lot of code, and slow down parsing of valid inputs.
Better to leave it until the owning memory context is freed.
Thank you for the explanation.

regards,
Ranier Vilela

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

Предыдущее
От: Dean Rasheed
Дата:
Сообщение: Re: Non-decimal integer literals
Следующее
От: Pavel Borisov
Дата:
Сообщение: Re: old_snapshot_threshold bottleneck on replica