pgsql: Fix thinko in commit 2bd9e412f92bc6a68f3e8bcb18e04955cc35001d.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix thinko in commit 2bd9e412f92bc6a68f3e8bcb18e04955cc35001d.
Date: 2014-11-05 23:22:56
Message-ID: E1Xm9ui-0006nz-2J@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix thinko in commit 2bd9e412f92bc6a68f3e8bcb18e04955cc35001d.

Obviously, every translation unit should not be declaring this
separately. It needs to be PGDLLIMPORT as well, to avoid breaking
third-party code that uses any of the functions that the commit
mentioned above changed to macros.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c30be9787bd9808631b72843b0a93f06ce775dd0

Modified Files
--------------
src/backend/libpq/pqcomm.c | 2 ++
src/include/libpq/libpq.h | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-11-06 00:35:30 pgsql: Remove the last vestige of server-side autocommit.
Previous Message Tom Lane 2014-11-05 16:44:10 pgsql: Make CREATE TYPE print warnings if a datatype's I/O functions ar