Finding the pqlib version - Mailing list pgsql-interfaces

From Christoph Zwerschke
Subject Finding the pqlib version
Date
Msg-id 43EDC399.6060203@online.de
Whole thread Raw
Responses Re: Finding the pqlib version  ("Greg Sabino Mullane" <greg@turnstep.com>)
Re: Finding the pqlib version  (Peter Eisentraut <peter_e@gmx.net>)
Re: Finding the pqlib version  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-interfaces
I want to add the PQCancel() functionality to PyGreSQL.
Until now, PyGreSQL works with PostgreSQL 7.3+, but
unfortunately, PQCancel() is only available from 8.0+.

In order to not break compilation of PyGreSQL on systems with PG7,
I would like to do something like the following:

#if PQLIB_VERSION_MAJOR < 8  PQRequestCancel(conn)
#else  c = PQgetCancel(conn)  PQCancel(c, errbuf, 256)  PQfreeCancel(c)
#end

However, there is no such thing as "PQLIB_VERSION_MAJOR".
Anything else I could query instead?

-- Christoph



pgsql-interfaces by date:

Previous
From: Michael Meskes
Date:
Subject: Re: [BUGS] BUG #2171: Differences compiling plpgsql in ecpg and psql
Next
From: "Greg Sabino Mullane"
Date:
Subject: Re: Finding the pqlib version