Re: modifying in the libpg files

From: "Islam Hegazy" <islheg(at)gmail(dot)com>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: modifying in the libpg files
Date: 2007-04-22 03:59:33
Message-ID: 003e01c78492$a69dce80$0d0e9f88@pc.cpsc.ucalgary.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

But can you tell me how to let libpq.so depend on the shared library of
PrintQueryTuples? I need to implement this to show my boss that this final
step is not applicable.

Also, what is and what do you mean by extending libpq's published API?

Regards
Islam Hegazy

----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Islam Hegazy" <islheg(at)gmail(dot)com>
Cc: <pgsql-interfaces(at)postgresql(dot)org>
Sent: Saturday, April 21, 2007 8:55 PM
Subject: Re: [INTERFACES] modifying in the libpg files

> "Islam Hegazy" <islheg(at)gmail(dot)com> writes:
>> ../../src/interfaces/libpq/libpq.so: undefined reference to =
>> `PrintQueryResults'
>
> libpq.so is a shared library --- you can't have it calling functions
> that are not in either itself or a shared library it depends on.
> You'd have to move PrintQueryTuples bodily into libpq.so to make this
> work. There are various reasons why that's not a great idea, the
> main one being that libpq has no idea where psql is intending to
> send the output.
>
> IMHO a reasonable solution would involve extending libpq's published API
> to allow returning partial query results. This seems like it could be
> made to fit into the PQsendQuery/PQgetResult paradigm, but nobody's
> actually done that yet.
>
> regards, tom lane

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message MicazMAK 2007-04-29 16:22:17 Problem using PQgetvalue()
Previous Message Tom Lane 2007-04-22 02:55:34 Re: modifying in the libpg files