]> granicus.if.org Git - postgresql/commitdiff
Add PQlibVersion() function to libpq
authorMagnus Hagander <magnus@hagander.net>
Wed, 22 Dec 2010 13:23:56 +0000 (14:23 +0100)
committerMagnus Hagander <magnus@hagander.net>
Wed, 22 Dec 2010 13:23:56 +0000 (14:23 +0100)
This function is like the PQserverVersion() function except
it returns the version of libpq, making it possible for a client
program or driver to determine which version of libpq is in
use at runtime, and not just at link time.

Suggested by Harald Armin Massa and several others.

doc/src/sgml/libpq.sgml
src/interfaces/libpq/exports.txt
src/interfaces/libpq/fe-misc.c
src/interfaces/libpq/libpq-fe.h

index c502439356673e0db3abece957c0e5e3de3b4696..7aac6f6829ee039183ab53b82b0e3221e8679933 100644 (file)
@@ -5359,6 +5359,50 @@ void *PQresultAlloc(PGresult *res, size_t nBytes);
     </listitem>
    </varlistentry>
 
+   <varlistentry id="libpq-pqlibversion">
+    <term>
+     <function>PQlibVersion</function>
+     <indexterm>
+      <primary>PQlibVersion</primary>
+      <seealso>PQserverVersion</seealso>
+     </indexterm>
+    </term>
+
+    <listitem>
+     <para>
+      Return the version of <productname>libpq</> that is being used.
+<synopsis>
+int PQlibVersion(void);
+</synopsis>
+     </para>
+
+     <para>
+      The result of this function can be used to determine, at
+      runtime, if specific functionality is available in the currently
+      loaded version of libpq. The function can be used, for example,
+      to determine which connection options are available for
+      <function>PQconnectdb</> or if the <literal>hex</> <type>bytea</>
+      output added in PostgreSQL 9.0 is supported.
+     </para>
+
+     <para>
+      The number is formed by converting the major, minor, and revision
+      numbers into two-decimal-digit numbers and appending them together.
+      For example, version 9.1 will be returned as 90100, and version
+      9.1.2 will be returned as 90102 (leading zeroes are not shown).
+     </para>
+
+     <note>
+      <para>
+       This function appeared in <productname>PostgreSQL</> version 9.1, so
+       it cannot be used to detect required functionality in earlier
+       versions, since linking to it will create a link dependency
+       on version 9.1.
+      </para>
+     </note>
+    </listitem>
+   </varlistentry>
+
   </variablelist>
 
  </sect1>
index a6c73af52e85c573e9589e2a9210b91874887e5c..1af8df699edf641ef4defecbdd375d7ff4b3a515 100644 (file)
@@ -159,3 +159,4 @@ PQconnectdbParams         156
 PQconnectStartParams      157
 PQping                    158
 PQpingParams              159
+PQlibVersion              160
index 24ab7cf97a32481a32719cbe64dec8315a822d21..999f60b0d43a7d164db6287024e009c8df2a107b 100644 (file)
@@ -66,6 +66,14 @@ static int pqSocketCheck(PGconn *conn, int forRead, int forWrite,
                          time_t end_time);
 static int     pqSocketPoll(int sock, int forRead, int forWrite, time_t end_time);
 
+/*
+ * PQlibVersion: return the libpq version number
+ */
+int
+PQlibVersion(void)
+{
+       return PG_VERSION_NUM;
+}
 
 /*
  * fputnbytes: print exactly N bytes to a file
index 271afedb7b8557b1ce054ebf88288514384b8c39..6075ea8151ec96497a36f9a0c693f6f248cfe0c1 100644 (file)
@@ -547,6 +547,9 @@ extern int  lo_export(PGconn *conn, Oid lobjId, const char *filename);
 
 /* === in fe-misc.c === */
 
+/* Get the version of the libpq library in use */
+extern int     PQlibVersion(void);
+
 /* Determine length of multibyte encoded char at *s */
 extern int     PQmblen(const char *s, int encoding);