| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | "Dirschel, Steve" <steve(dot)dirschel(at)thomsonreuters(dot)com> |
| Cc: | "pgsql-performance(at)lists(dot)postgresql(dot)org" <pgsql-performance(at)lists(dot)postgresql(dot)org> |
| Subject: | Re: Problem getting query to use index inside a function |
| Date: | 2025-11-05 16:18:39 |
| Message-ID: | 836752.1762359519@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-performance |
"Dirschel, Steve" <steve(dot)dirschel(at)thomsonreuters(dot)com> writes:
> Here is the function I'm having difficulties with:
> CREATE OR REPLACE FUNCTION public.steve1(param_requestid text[], param_productid integer DEFAULT 1)
> RETURNS TABLE(objectid text, n text, v text, vt integer)
> LANGUAGE sql
> AS $function$
> SELECT objectid::text
> , i->>'n'::text
> , i->>'v'::text
> , (i->>'vt') :: INT as vt
> FROM request r
> , jsonb_array_elements(data -> 'i') i
> WHERE objectid = ANY($1)
> AND productid=$2
> $function$
> ;
> Query:
> shared=> explain (analyze, buffers)
> shared-> SELECT objectid::text, n::text, v::text, vt::int FROM steve1(ARRAY['5ab8e0ca-abb5-48c9-a95e-2bb2a375d903','adcbe251-6723-48a8-8385-55133fab704a'], 1);
> QUERY PLAN
> ----------------------------------------------------------------------------------------------------------------
> Function Scan on steve1 (cost=0.25..10.25 rows=1000 width=100) (actual time=42.694..42.942 rows=3368 loops=1)
I think you would have better luck if the planner were "inlining"
this function, which we can see it's not since you get a Function Scan
on steve1 rather than the contained query.
I think the only thing stopping that from happening is that the
function is (by default) VOLATILE. Try marking it STABLE so that
it can share the calling query's snapshot.
(v18 should handle such cases better than previous versions, BTW.
But you'd still be better off marking the function STABLE.)
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Dirschel, Steve | 2025-11-05 16:55:38 | RE: [EXT] Re: Problem getting query to use index inside a function |
| Previous Message | Dirschel, Steve | 2025-11-05 16:02:27 | Problem getting query to use index inside a function |