Re: leakproof - Mailing list pgsql-hackers

From Tom Lane
Subject Re: leakproof
Date
Msg-id 17714.1329924107@sss.pgh.pa.us
Whole thread Raw
In response to Re: leakproof  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: leakproof  (Andrew Dunstan <andrew@dunslane.net>)
Re: leakproof  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes:
> Anyway, to your point, I suppose I might hesitate to mark factorial
> leak-proof even if it didn't throw an error on overflow, because the
> time it takes to return an answer for larger inputs does grow rather
> rapidly.  But it's kind of a moot point because the error makes it not
> leak-proof anyway.  So maybe we're just splitting hairs here, however
> we decide to label this.

Speaking of hair-splitting ...

A strict interpretation of "no errors can be thrown" would, for example,
rule out any function that either takes or returns a varlena datatype,
since those are potentially going to throw out-of-memory errors if they
can't palloc a result value or a temporary detoasted input value.
I don't suppose that we want that, which means that this rule of thumb
is wrong in detail, and there had better be some more subtle definition
of what is okay or not, perhaps along the line of "must not throw any
errors that reveal anything useful about the input value".  Have we got
such a definition?  (I confess to not having followed this patch very
closely.)
        regards, tom lane


pgsql-hackers by date:

Previous
From: Greg Smith
Date:
Subject: Re: Patch: add timing of buffer I/O requests
Next
From: Tom Lane
Date:
Subject: Re: VACUUM ANALYZE is faster than ANALYZE?