Re: [BUG FIX] Uninitialized var fargtypes used.

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: [BUG FIX] Uninitialized var fargtypes used.
Дата
Msg-id 20191112201046.GA29021@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: [BUG FIX] Uninitialized var fargtypes used.  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: [BUG FIX] Uninitialized var fargtypes used.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
On 2019-Nov-12, Tom Lane wrote:

> If we're going to revert 0a52d378b03b we should just treat the
> problem straightforwardly.  I was imagining
> 
> -        if (memcmp(argtypes, clist->args, nargs * sizeof(Oid)) == 0)
> +        /* if nargs==0, argtypes can be null; don't pass that to memcmp */
> +        if (nargs == 0 ||
> +            memcmp(argtypes, clist->args, nargs * sizeof(Oid)) == 0)
> 
> It's really stretching credulity to imagine that one more test-and-branch
> in this loop costs anything worth noticing, especially compared to the
> costs of having built the list to begin with.  So I'm now feeling that
> 0a52d378b03b was penny-wise and pound-foolish.

I pushed using that approach.

For a minute I thought that it should also test that clist->nargs also
equals 0, but that turns out not to be necessary since the number of
arguments is already considered by FuncnameGetCandidates above.

Thanks

-- 
Álvaro Herrera                https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



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

Предыдущее
От: Juan José Santamaría Flecha
Дата:
Сообщение: Re: BUG #16108: Colorization to the output of command-line hasunproperly behaviors at Windows platform
Следующее
От: PG Bug reporting form
Дата:
Сообщение: BUG #16109: Postgres planning time is high across version - 10.6 vs 10.10