diff options
| author | Bruce Momjian <bruce@momjian.us> | 2005-09-25 03:06:41 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2005-09-25 03:06:41 +0000 |
| commit | ccc0a1326ed5c8ba7aa3338cfa7d5e1b9693032b (patch) | |
| tree | b3ae0533a6b03f8d2639704f06b22fbd712e8ab6 /doc/src/sgml/libpq.sgml | |
| parent | d3419467bb90cc10438493bf6b6f513a34252dca (diff) | |
| download | postgresql-ccc0a1326ed5c8ba7aa3338cfa7d5e1b9693032b.tar.gz | |
Document why PQtrace and ecpg debug() can crash the application if the
DLL compiles to not match the application.
Diffstat (limited to 'doc/src/sgml/libpq.sgml')
| -rw-r--r-- | doc/src/sgml/libpq.sgml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 7f9bc97b0d..c788386f6a 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.189 2005/08/14 22:19:49 petere Exp $ +$PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.190 2005/09/25 03:06:41 momjian Exp $ --> <chapter id="libpq"> @@ -3515,6 +3515,13 @@ affect the messages available from already-existing void PQtrace(PGconn *conn, FILE *stream); </synopsis> </para> +<note> +<para> +On Win32, if the <application>libpq</> library and application are compiled with +different flags, this function call will crash the application because the +internal representation of the <literal>FILE</> pointers differ. +</para> +</note> </listitem> </varlistentry> |
