Re: [BUG FIX] Uninitialized var fargtypes used. - Mailing list pgsql-bugs

From Alvaro Herrera
Subject Re: [BUG FIX] Uninitialized var fargtypes used.
Date
Msg-id 20191112201046.GA29021@alvherre.pgsql
Whole thread Raw
In response to Re: [BUG FIX] Uninitialized var fargtypes used.  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [BUG FIX] Uninitialized var fargtypes used.
List 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 by date:

Previous
From: Juan José Santamaría Flecha
Date:
Subject: Re: BUG #16108: Colorization to the output of command-line hasunproperly behaviors at Windows platform
Next
From: PG Bug reporting form
Date:
Subject: BUG #16109: Postgres planning time is high across version - 10.6 vs 10.10