Re: Convert stmt back into queryString

From: Dan Colish <dan(at)unencrypted(dot)org>
To: PGHACKERS <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Convert stmt back into queryString
Date: 2009-08-05 02:12:43
Message-ID: 20090805021243.GN3109@blackbox.spiretech.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


On Tue, Aug 04, 2009 at 10:00:24PM -0400, Tom Lane wrote:
> Dan Colish <dan(at)unencrypted(dot)org> writes:
> > I am currently trying to convert an insertstmt back into a const
> > char *queryString, but I can't find an existing function to do this
> > for the life of me. I will write one if none exits, but I figured I
> > ask here first. Unfortunately, nodeToString is not quite right for
> > what I'm doing. Thanks in advance.
>
> Hmm, you mean a Query, or a raw unanalyzed InsertStmt? If the former,
> ruleutils.c will help. If the latter, be prepared to write a lot of
> code; there's nothing closer than nodeToString, and even that is pretty
> incomplete for raw grammar output nodes IIRC.
>
> regards, tom lane

In this case, its a raw InsertStmt. I would like to pass this back to
parse_analyze, but I need to have a queryString to go with that call, so
crafting a function to rate that seems to be the only way, atm.

--
--Dan

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Joe Conway 2009-08-05 02:50:07 Re: async notification patch for dblink
Previous Message Tom Lane 2009-08-05 02:00:24 Re: Convert stmt back into queryString