Re: I want to send comments to the backend! - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: I want to send comments to the backend!
Date
Msg-id 10177.1048225294@sss.pgh.pa.us
Whole thread Raw
In response to Re: I want to send comments to the backend!  (Bruce Momjian <pgman@candle.pha.pa.us>)
Responses Re: I want to send comments to the backend!
Re: I want to send comments to the backend!
List pgsql-interfaces
Bruce Momjian <pgman@candle.pha.pa.us> writes:
> OK, this patch fixes the comment passing bug.  I remove the strspn() and
> added a boolean to test if any parsetree had been generated --- if not,
> I call NullCommand().

Seems like the hard way.  I had in mind a quick
if (parsetree_list == NIL){    NullCommand(dest);    return;}

before entering the main loop.  It'd take a small amount of reordering
of the existing code to make this happen without adding any more code
than that, but it looked doable.
        regards, tom lane


pgsql-interfaces by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: I want to send comments to the backend!
Next
From: Bruce Momjian
Date:
Subject: Re: I want to send comments to the backend!