diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-02 20:21:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-02 20:21:32 +0000 |
commit | b356b969ef9b9be11f2417b006089c5940e93c42 (patch) | |
tree | b8eef4d88a8fd2ab9de77db3c8f06b33ff69a53e /doc/src | |
parent | 8f60f43f2e23add472acd988741411e025bff87d (diff) | |
download | postgresql-b356b969ef9b9be11f2417b006089c5940e93c42.tar.gz postgresql-b356b969ef9b9be11f2417b006089c5940e93c42.zip |
Fix obsolete description of PGnotify struct.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 4d604b2ad48..d1179fa92fc 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.93 2002/08/17 12:33:17 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.94 2002/09/02 20:21:32 tgl Exp $ --> <chapter id="libpq"> @@ -1653,9 +1653,8 @@ messages can be detected by calling <function>PQnotifies</function>. PGnotify* PQnotifies(PGconn *conn); typedef struct pgNotify { - char relname[NAMEDATALEN]; /* name of relation - * containing data */ - int be_pid; /* process id of backend */ + char *relname; /* name of relation containing data */ + int be_pid; /* process id of backend */ } PGnotify; </synopsis> After processing a <structname>PGnotify</structname> object returned by <function>PQnotifies</function>, |