On Thu, May 26, 2022 at 3:10 PM Tom Lane wrote:
Can you do anything useful with attaching selectivity estimates
to the functions it references, instead?
I may have been doing down a bad path before. The function I'm
working to improve has five argument, the last being "degrees", which
is the ma
Greg Hennessy writes:
> On Thu, May 26, 2022 at 3:10 PM Tom Lane wrote:
>> Attaching a support function to a SQL-language function seems pretty
>> weird to me.
> Is there a way to set the selectivity of a SQL-language function?
I think it'd work if you prevented inlining, but doing so would def
On Thu, May 26, 2022 at 3:10 PM Tom Lane wrote:
> Greg Hennessy writes:
> > I'm trying to include a sensitivity operator in a function. My issue is
> > that when I have my function, I get a call to SupportRequestSimplify, but
> > not SupportRequestSensitivity. It is not obvious what I am doing t
Greg Hennessy writes:
> I'm trying to include a sensitivity operator in a function. My issue is
> that when I have my function, I get a call to SupportRequestSimplify, but
> not SupportRequestSensitivity. It is not obvious what I am doing that is
> incorrect.
Attaching a support function to a SQL