Re: Predicates not getting pushed into SQL function? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Predicates not getting pushed into SQL function?
Date
Msg-id 11061.1320352516@sss.pgh.pa.us
Whole thread Raw
In response to Re: Predicates not getting pushed into SQL function?  (Jay Levitt <jay.levitt@gmail.com>)
Responses Re: Predicates not getting pushed into SQL function?  (Jay Levitt <jay.levitt@gmail.com>)
List pgsql-performance
Jay Levitt <jay.levitt@gmail.com> writes:
> <html><head>
> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type">
> </head><body bgcolor="#FFFFFF" text="#000000">What other info can I
> provide?  id is int, gender is varchar(255), and it's happening on
> 9.0.4...<br>
> <blockquote style="border: 0px none;"
> [ etc etc ]

Please don't send HTML-only email to these lists.

Anyway, the answer seems to be that inline_set_returning_function needs
some work to handle cases with declared OUT parameters.  I will see
about fixing that going forward, but in existing releases what you need
to do is declare the function as returning SETOF some named composite
type, eg

create type matcher_result as (user_id int, match int);

create or replace function matcher() returns setof matcher_result as ...

            regards, tom lane

pgsql-performance by date:

Previous
From: Mario Weilguni
Date:
Subject: Re: Performance Problem with postgresql 9.03, 8GB RAM,Quadcore Processor Server--Need help!!!!!!!
Next
From: CS DBA
Date:
Subject: Re: function slower than the same code in an sql file