Re: New Defects reported by Coverity Scan for PostgreSQL

From: Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Ning Yu <nyu(at)pivotal(dot)io>
Cc: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Emre Hasegeli <emre(at)hasegeli(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: New Defects reported by Coverity Scan for PostgreSQL
Date: 2018-08-01 09:23:16
Message-ID: 9cc1e851-26b6-abfb-b62f-c788b14b9028@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On 08/01/2018 04:22 AM, Tom Lane wrote:
> Ning Yu <nyu(at)pivotal(dot)io> writes:
>> From my point of view it's better to also put some comments for humans to
>> understand why we are passing l1 and l2 in reverse order.
>
> The header comment for lseg_closept_lseg() is pretty far from adequate
> as well. After studying it for awhile I think I've puzzled out the
> indeterminacies, but I shouldn't have had to. I think it probably
> should have read
>
> * Closest point on line segment l2 to line segment l1
> *
> * This returns the minimum distance from l1 to the closest point on l2.
> * If result is not NULL, the closest point on l2 is stored at *result.
>
> Or perhaps I have it backwards and "l1" and "l2" need to be swapped in
> that description. But the mere fact that there is any question about
> that means that the function is poorly documented and perhaps poorly
> named as well. For that matter, is there a good reason why l1/l2
> have those roles and not the reverse?
>
> While Coverity is surely operating from a shaky heuristic here, it's
> got a point. The fact that it makes a difference which argument is
> given first means that you've got to be really careful about which
> is which, and this API spec is giving no help in that regard at all.
>

Yeah, I agree. The comments don't make it very clear what is the API
semantics. Will fix.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Emre Hasegeli 2018-08-01 09:55:53 Re: New Defects reported by Coverity Scan for PostgreSQL
Previous Message Peter Eisentraut 2018-08-01 08:23:20 pgsql: Allow multi-inserts during COPY into a partitioned table

Browse pgsql-hackers by date

  From Date Subject
Next Message Emre Hasegeli 2018-08-01 09:55:53 Re: New Defects reported by Coverity Scan for PostgreSQL
Previous Message Tomas Vondra 2018-08-01 09:15:38 Re: Online enabling of checksums