Timbo Chen <timbo@powerreviews.com> writes:
> just wondering if there was a way to get the execution plan for the
> prepared statement.
Prepare an equivalently-parameterized statement by hand:
PREPARE foo(int,text,...) AS ...
and then do EXPLAIN [ANALYZE] EXECUTE foo(...)
regards, tom lane