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.
|
Список | 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 по дате отправления: