low performance on functions returning setof record - Mailing list pgsql-performance

From Sabin Coanda
Subject low performance on functions returning setof record
Date
Msg-id gcl5hg$2kq8$1@news.hub.org
Whole thread Raw
Responses Re: low performance on functions returning setof record  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-performance
Hi there,

I use different functions returning setof record, and they are working well.
The problem is the performance when I use those functions in joins, for
instance:

        SELECT *
        FROM "Table1" t1
                JOIN "Function1"( a1, a2, ... aN ) AS f1( ColA int4, ColB
varchar, ... )
                        ON t1.ColX = f1.ColA

The problem is I'm not able to make indexes on the function, even inside I
have just another select statement from different permanent tables, with
some where clauses depending on the function arguments.

Do you know a way to build such a function, returning something I can join
in an outer select statement like above, using indexes or another way to run
it faster ?

TIA,
Sabin



pgsql-performance by date:

Previous
From: "Віталій Тимчишин"
Date:
Subject: Re: Delete performance again
Next
From: Tom Lane
Date:
Subject: Re: low performance on functions returning setof record