From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Jay Levitt <jay(dot)levitt(at)gmail(dot)com> |
Cc: | pgsql-performance(at)postgresql(dot)org |
Subject: | Re: Predicates not getting pushed into SQL function? |
Date: | 2011-11-03 20:35:16 |
Message-ID: | 11061.1320352516@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
Jay Levitt <jay(dot)levitt(at)gmail(dot)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
From | Date | Subject | |
---|---|---|---|
Next Message | CS DBA | 2011-11-03 22:42:13 | Re: function slower than the same code in an sql file |
Previous Message | Mario Weilguni | 2011-11-03 20:07:59 | Re: Performance Problem with postgresql 9.03, 8GB RAM,Quadcore Processor Server--Need help!!!!!!! |