Re: Storing a query plan...

From: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
To: Katsaros Kwn/nos <ntinos(at)aueb(dot)gr>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Storing a query plan...
Date: 2004-08-31 17:28:12
Message-ID: 4134B52C.2010206@commandprompt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello,

If you are a newbie :) I would suggest taking a slightly simpler
approach by using prepared queries. Prepared queries will give you the
stored plan, albeit per connection.

E.g:

PREPARE FOO AS SELECT ....

EXECUTE FOO;

Sincerely,

Joshua D. Drake

Katsaros Kwn/nos wrote:
> Hi!
>
> I'm new to PostgreSQL (and C) and what I'm trying to do is to store a
> query plan on disc (in a binary file).
> My approach is to use SPI functions to get the query plan and then
> transform it into a 'storable' format (Replacing the pointers with
> actual values).
>
> Is there any other way to do this? Is my approach OK?
> The sure thing is that it is a messy task!
>
> I posted this message to the 'general' and 'novice' lists but the only
> answer I got was from the latter:
>
> " I'd look at extending the outfuncs/readfuncs code to deal with
> all the node types used in plan trees, and then store text
> strings instead of binary.
>
> regards, tom lane",
>
> which seems a little confusing to me since as I said I'm a newbie.
>
> Thanks in advance,
> ntinoas
>
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: don't forget to increase your free space map settings

--
Command Prompt, Inc., home of Mammoth PostgreSQL - S/ODBC and S/JDBC
Postgresql support, programming shared hosting and dedicated hosting.
+1-503-667-4564 - jd(at)commandprompt(dot)com - http://www.commandprompt.com
Mammoth PostgreSQL Replicator. Integrated Replication for PostgreSQL

Attachment Content-Type Size
jd.vcf text/x-vcard 640 bytes

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2004-08-31 18:57:28 Re: [PATCHES] ALTER SCHEMA ... SET TABLESPACE
Previous Message Katsaros Kwn/nos 2004-08-31 17:17:59 Storing a query plan...